
.name_select {
    background-color: #000000;
    width: 100%;
    text-align: left;
    padding: 20px;
}

.note {
    font-size: 12px;
}

a {
    all: unset;
    color: rgb(255, 126, 20);
}

a:hover {
    all: unset;
    color: rgb(255, 126, 20);
    cursor: pointer;
}

.underline_animation {
    display: inline-block;
    position: relative;
    color: rgb(255, 126, 20);
}
  
.underline_animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(255, 126, 20);
    transform-origin: bottom center;
    transition: transform 0.15s ease-out;
}

.underline_animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom center;
}

.camp_overview {
    background-color: #000000;
    border-color: #000000;
    border-style: solid;
    border-width: 4px;
    border-color: #272727;

    outline-style: solid;
    outline-width: 2px;
    outline-color: #272727;
    outline-offset: -6px;
}

.camp_overview:hover {
    cursor: pointer;
    outline-color: rgb(255, 126, 20);
}