.container {
    width: 100%;
}

#side-nav-tab-links {
    padding-top: 20px;
    list-style-type: none;
    padding-left: 0;
    border-right: solid thin #9be6ec;
}

#side-nav-tab-links li {
    font-size: 1.2em;
    display: block;
    transition: background 0.3s ease;
    padding: 10px;
}

#side-nav-tab-links li a:hover,
#side-nav-tab-links li a:focus {
    text-decoration: none;
}

#side-nav-tab-links li.active {
    background-color: rgba(93, 160, 38, 0.5);
}

#management-logout-button {
    font-size: 1.2em;
    padding: 0.5rem;
    margin-top: 10px;
    width: 100%;
}

#profile-form #mobile-verify-btn,
#profile-form .mobile-verification-text,
#profile-form #mobile-verification-info {
    animation: blinker 1s linear infinite;
    color: #b32317;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

#address-to-map-modal .modal-content,
#address-to-map-modal .modal-body {
    border: #000000 2px solid;
}

#general-notification-list input {
    appearance: none;
    position: relative;
    display: inline-block;
    background: gray;
    height: 1.65rem;
    width: 2.75rem;
    vertical-align: middle;
    border-radius: 2rem;
    box-shadow: 0px 1px 3px #0003 inset;
    transition: 0.25s linear background;
    cursor: pointer;
}

#general-notification-list input::before {
    content: '';
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background: #ffffff;
    border-radius: 1.2rem;
    position: absolute;
    top: 0.2rem;
    left: 0.25rem;
    box-shadow: 0px 1px 3px #0003;
    transition: 0.25s linear transform;
    transform: translateX(0rem);
}

#general-notification-list input:checked {
    background: #4caf50;
}

#general-notification-list input:checked::before {
    transform: translateX(1rem);
}

#profile-form .profile-form-group {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 3fr auto;
}

#profile-form .profile-form-group label {
    grid-column: 1;
}

#profile-form .profile-form-group input,
#profile-form .profile-form-group select {
    grid-column: 2;
}

#profile-form .profile-form-group .mobile-verification-text {
    grid-column: 2;
    margin-top: -0.5rem;
}

#profile-form .profile-form-group #mobile-verification-info {
    grid-column: 3;
}

#profile-form .profile-form-group #map-address-icon {
    grid-column: 3;
}

@media (max-width: 768px) {
    #profile-form .profile-form-group {
        grid-template-columns: 1fr auto;
        gap: 0.3rem;
    }

    #profile-form .profile-form-group label {
        text-align: left;
    }

    #profile-form .profile-form-group input,
    #profile-form .profile-form-group select {
        grid-column: 1;
    }

    #profile-form .profile-form-group .mobile-verification-text {
        grid-column: 1;
    }

    #profile-form .profile-form-group #mobile-verification-info {
        grid-column: 2;
    }

    #profile-form .profile-form-group #map-address-icon {
        grid-column: 2;
    }
}

@media (max-width: 418px) {
    #mobile-verify-btn {
        margin-left: 0;
        margin-top: 5px;
    }
}
