body {
    background-color: #2c003e;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

input[type=checkbox] {
    margin-right: 10px;
}

.container {
    padding-top: 20px;
}

.calculator-card {
    background-color: #6a1b9a;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
}

h1 {
    font-family: 'Bangers', cursive;
    color: #fce303;
    text-align: center;
    margin-top: 5px;
}

h2 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

h3,
.header-label {
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
    color: white;
    text-align:center;
}

a {
    color: #fce303;
}

.skinny-col {
    padding-left: 0px;
    padding-right: 0px;
}

.first-col {
    padding-left: 0px
}

.last-col {
    margin-right: 0px;
}

.header-label.grass {
    color: #55ff00
}

.header-label.sand {
    color: #fce303;
}

.header-label.frost {
    color: #00eaff;
}

.header-label.stat {
    color: #ffa800;
    /* text-shadow:#000 1px 1px; */
}

.btn-calculate {
    background-color: #4CAF50;
    /* Bright green for better visibility */
    color: white;
    border: none;
}

.btn-calculate:hover {
    background-color: #388E3C;
    /* Darker green on hover */
}

.resource-list {
    margin-top: 20px;
}

.resource-item {
    background-color: #4a148c;
    /* Deeper purple shade for items */
    border-left: 5px solid #9c27b0;
    /* Brighter purple accent */
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.form-control {
    background-color: #4527a0;
    /* Darker purple for dropdown */
    color: white;
    border: 1px solid #4527a0;
}

.top-header {
    text-align: center;
    margin-bottom: 30px;
}

.sub {
    vertical-align: sub;
}

.checkSection {
    background-color: #9c27b0;
    /* padding: 15px; */
    /* margin: 10px; */
    border-radius: 15px;
    margin-bottom: 15px;
    margin-left: 0px;

}

.stationsCheckSection {
    padding: 0px 2px 5px 15px;
}

.grassy-head {
    margin-bottom: 0px;
    line-height: 4px;
    margin-top: 17px;
}

.grassy-sub {
    font-size: 11px;
    top: -8px;
    position: relative;
}

#grasslandsVillageContainer {
    position: relative;
    top: -8px;
}

.reg-head {
    margin-bottom: 16px;
}

.res-check {
    margin-bottom: 5px;
}


.center-message {
    text-align: center;
}

.result-column {
    padding: 10px;
    /* Adjust padding as needed */
    /* margin: 10px; */
    /* Adjust margin as needed */
}

.columnContent {
    margin: 15px;
    /* Adjust this value to match the section above */
    padding: 10px;
    background-color: #9c27b0;
    border-radius: 15px;
}

.copyright {
    text-align: right;
    font-size: 14px;
}

.top-message {
    position: absolute;
    right: 10px;
}

/* Accordion Custom Styles */
.card {
    background-color: #6a1b9a;
    /* Dark purple to match calculator-card */
    border: none;
    /* Removes default borders */
}

.card-header {
    padding: .75rem 1.25rem;
    /* Adjust padding to your preference */
    margin-bottom: 0;
    /* Removes default margin-bottom */
    background-color: #9c27b0;
    /* Lighter purple for header */
    border-bottom: none;
    /* Removes default border-bottom */
}

.btn-link {
    color: #fce303;
    /* Bright yellow to match other headers */
    font-family: 'Bangers', cursive;
    /* Matches the font style of your headers */
    text-decoration: none;
    /* Removes underline from links */
    font-size:24px;
    padding: 0px 0px 10px 10px ;
}

.btn-link:hover {
    color: #fff;
    /* Changes color on hover/focus */
    text-decoration: none;
    /* Keeps underline removed on hover/focus */
}

.card-body {
    background-color: #4527a0;
    /* Darker purple for content area */
    color: white;
    /* Ensures text is white for readability */
    padding: 1.25rem;
    /* Adjust padding to match other content areas */
}

/* This style is to ensure that collapsed accordion headers are also styled */
.card-header .collapsed {
    color: #fce303;
}

.triangle-indicator {
    display: inline-block;
    margin-left: 10px;
    /* Adjust as needed */
    transition: transform 0.3s ease;
    /* Smooth transition for rotating */
}

.collapsed .triangle-indicator {
    transform: rotate(-90deg);
    /* Rotates the triangle when the accordion is collapsed */
}

.unchecker {
    top: -10px;
    position: relative;
    float: right;
    font-size:12px;
    margin-right:10px;
}

.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .top-message {
        position: relative;
        text-align: center;
        padding-bottom:10px;
    }
}
