/* services.css */
body {
    background-color: #111111;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

h1 {
    font-size: 26pt;
}

h2 {
    font-size: 24pt;
}

h3 {
    font-size: 22pt;
}

h4 {
    font-size: 20pt;
}

header nav ul li a:hover {
    color: var(--sh-green);
    border-bottom: 2px solid var(--sh-darkgreen);
}

::selection {
    color: #ffffff;
    background-color: var(--sh-magenta);
    text-shadow: 2px 0 black, 0 -2px black, -2px 0 black, 0 2px black;
    font-weight: bold;
}

a {
    color: var(--sh-green);
}

a:visited {
    color: var(--sh-magenta);
}

a:hover {
    color: var(--sh-magenta);
}

a:active {
    color: var(--sh-green);
}

price {
    color: var(--sh-magenta);
    font-weight: bold;
}

.icon {
    height: 24px;
    vertical-align: middle;
}

.container {
    min-width: 969px;
    max-width: 69vw;
    margin: 40px auto;
    padding: 30px;
    background-color: #222222;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.tabs {
    position: relative;
    margin-bottom: 30px;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs label {
    display: inline-block;
    margin-right: 10px;
    padding: 15px 25px;
    background-color: #444444;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-items: center;
}

.tabs label:hover {
    background-color: var(--sh-darkgreen);
    text-shadow: 1px 0 black, 0 -1px black, -1px 0 black, 0 1px black;
}

.tabs input[type="radio"]:checked + label {
    background-color: var(--sh-darkmagenta);
    color: #ffffff;
    border-bottom: 3px solid #ff599a;
}

.tab-content {
    padding: 30px;
    font-size: 16pt;
    background-color: #444444;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.tab-pane {
    display: none;
}

#se-tab:checked ~.tab-content #se-content {
    display: block;
}

#nl-tab:target ~.tab-content #nl-content {
    display: block;
}

#usca-tab:target ~.tab-content #usca-content {
    display: block;
}

#usor-tab:target ~.tab-content #usor-content {
    display: block;
}

#se-tab:checked ~.tab-content #se-content {
    display: block;
}

#nl-tab:checked ~.tab-content #nl-content {
    display: block;
}

#usca-tab:checked ~.tab-content #usca-content {
    display: block;
}

#usor-tab:checked ~.tab-content #usor-content {
    display: block;
}

.tab-pane ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
    font-size: 14pt;
}

.tab-pane li {
    background-color: #111111;
    padding: 10px;
    min-width: 350px;
    border-radius: 15px;
    flex-basis: 5vw;
}


.tab-pane li:hover {
    background-color: #222222;
    outline: 2px solid var(--sh-magenta);
}

.textInput {
    width: 90%;
    background-color: #444444;
    color: white;
    font-size: 18px;
    border: 1px solid var(--sh-magenta);
    padding: 10px;
}

input:focus {
    outline: none;
    border: 2px solid var(--sh-magenta);
}

textarea:focus {
    outline: none;
    border: 2px solid var(--sh-magenta);
}

.largeTextInput {
    background-color: #444444;
    color: white;
    width: 90%;
    height: 16vh;
    font-size: 18px;
    padding: 10px;
    border: 1px solid var(--sh-magenta);
}

.largeTextInput::placeholder {
    font-size: 14px;
    position: absolute;
    top: 0;
}

.tab-pane li h3 {
    font-size: 20pt;
    margin-top: 0;
    text-align: left;
    color: var(--sh-green);
}

.tab-pane li p {
    font-size: 16pt;
    text-align: left;

}

.tab-pane li form {
    margin-top: 15px;
}

select {
    appearance: none; /* Remove default styling */
    background-color: #ffffff; /* Change to your desired color */
    color: #000000; /* Change to your desired color */
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

select option {
    background-color: #333333; /* Change to your desired color */
    color: #ffffff; /* Change to your desired color */
}

.dashbutton-green {
    width: 100px;
    height: 40px;
    background-color: var(--sh-darkgreenalt);
    color: white;
    font-weight: bold;
    border: 2px solid;
    border-image-source: linear-gradient(125deg, var(--sh-darkgreen), var(--sh-darkgreenalt));
    border-image-slice: 1;
}

.dashbutton-green:hover {
    border: 2px solid #00ff9c;
    border-image-source: linear-gradient(125deg, var(--sh-darkgreenalt), var(--sh-darkgreen));
    border-image-slice: 1;
}


.dropdown-wrapper {
    position: relative;
}

.dropdown-content {
    pointer-events: none;
    opacity: 0;
    transition: opacity 400ms;
}

.dropdown-wrapper:hover .dropdown-content {
    animation: show-content 300ms forwards;
    opacity: 1;
    transition: opacity 400ms;
}

@keyframes show-content {
    0% {
        pointer-events: none;
    }
    99% {
        pointer-events: none;
    }
    100% {
        pointer-events: auto;
    }
}

@keyframes hide-content {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}


.dropdown {
    display: inline-block;
    position: relative;
    margin: auto auto;
    text-align: center;
    width: 90%;
    margin-bottom: 26px;
}

.selected-option {
    background-color: #444444;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dropdown:hover{
    outline: 2px solid #ff0067;
    border-radius: 4px;
}

.dropdown-content {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    box-shadow: 0 2px 0 var(--sh-magenta), 2px 0 0 var(--sh-darkmagenta), -2px 0 0 var(--sh-darkmagentaalt);
    background-color: transparent;
    color: #ffffff;
    width: 100%;
}

.dropdown-content a {
    text-decoration: none; /* Remove underline */
    background-color: #333333;
    color: #ffffff;
    cursor: pointer;
    display: block;
    margin: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-content a:hover {
    background-color: #555555;
    outline: 2px solid #ff599a;
}

.dropdown-content input[type="radio"] {
    display: none;
}

.tab-pane li select {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #444444;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.tab-pane li select:hover {
    background-color: #777777;
}

.tab-pane li button[type="submit"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: var(--sh-green);
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-pane li button[type="submit"]:hover {
    background-color: var(--sh-magenta);
}