.btn{
    font-family: 'Stratos Light';
}

.btn-large {
    background-color: var(--lime);
    color: black;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    margin-right: 10px;
}
.btn-large:hover {
    background-color: white;
    color: black;
}
.btn-large:disabled{
    background-color: #ccc;
}

/* Hero Buttons */
.btn-large {
    font-family: 'Stratos Light', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 12px 40px; /* Increased width */
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    height:60px;
    margin-right:20px;
}

/* Lime Button */
.btn-lime {
    background-color: var(--lime);
    color: black;
}

/* Lime Button */
.btn-invertedlime {
    color: var(--lime);
    background-color: black;
    border-color: var(--lime);
}

.btn-lime:hover {
    background-color: white;
    color: black;
}

/* White Button */
.btn-white {
    background-color: white;
    color: black;
}

.btn-white:hover {
    background-color: var(--lime);
    color: black;
}

.btn-white.active{
    background-color: var(--lime);
}

/* Sky Button */
.btn-sky {
    background-color: var(--sky);
    color: black;
}

.btn-sky:hover {
    background-color: white;
    color: black;
}

/* Button Icons */
.btn-icon {
    width: 36px;
    height: auto;
}

.btn:disabled{
    border: solid 1px var(--forest);
}


/* Sign Up Button */
.btn-signup {
    background-color: var(--sky);
    color: black;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: auto; /* Ensures button stays at bottom */
}

/* Lime Hover Effect */
.btn-signup:hover {
    background-color: var(--lime);
    color: black;
}

/* App buttons (e.g. account actions) */
.app-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;   /* icon left, text pushed right */
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.95rem;               /* smaller than hero buttons */
    line-height: 1.3;
}

/* Compact variant for tighter buttons / smaller text */
.app-btn-compact{
    padding: 6px 12px;
    font-size: 0.9rem;
}

/* Ensure icon stays on the left */
.app-btn i{
    flex-shrink: 0;
}

/* Label uses remaining space and right-aligns text */
.app-btn .app-btn-label{
    flex: 1;
    text-align: right;
}

