/* Custom Button Styles */
.custom-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    /* font-family: 'Montserrat', ui-sans-serif, system-ui, sans-serif; */
    line-height: 1.4;
    text-decoration: none !important;
}

.custom-btn:hover {
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.custom-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.custom-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.custom-btn-md {
    padding: 12px 24px;
    font-size: 16px;
}

.custom-btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Primary Color */
.custom-btn-primary.custom-btn-solid {
    background-color: #00a3d5 !important;
    border-color: #00a3d5 !important;
    color: #ffffff !important;
}

.custom-btn-primary.custom-btn-solid:hover {
    background-color: #008bb8 !important;
    border-color: #008bb8 !important;
    color: #ffffff !important;
}

.custom-btn-primary.custom-btn-outline {
    background-color: transparent !important;
    border-color: #00a3d5 !important;
    color: #00a3d5 !important;
}

.custom-btn-primary.custom-btn-outline:hover {
    background-color: #00a3d5 !important;
    border-color: #00a3d5 !important;
    color: #ffffff !important;
}

/* Primary Light Color */
.custom-btn-primaryLT.custom-btn-solid {
    background-color: #00c3ff !important;
    border-color: #00c3ff !important;
    color: #ffffff !important;
}

.custom-btn-primaryLT.custom-btn-solid:hover {
    background-color: #00a3d5 !important;
    border-color: #00a3d5 !important;
    color: #ffffff !important;
}

.custom-btn-primaryLT.custom-btn-outline {
    background-color: transparent !important;
    border-color: #00c3ff !important;
    color: #00c3ff !important;
}

.custom-btn-primaryLT.custom-btn-outline:hover {
    background-color: #00c3ff !important;
    border-color: #00c3ff !important;
    color: #ffffff !important;
}

/* Secondary/Yellow Color */
.custom-btn-secondary.custom-btn-solid,
.custom-btn-yellow.custom-btn-solid {
    background-color: #FFC800 !important;
    border-color: #FFC800 !important;
    color: #000000 !important;
}

.custom-btn-secondary.custom-btn-solid:hover,
.custom-btn-yellow.custom-btn-solid:hover {
    background-color: #e6b300 !important;
    border-color: #e6b300 !important;
    color: #000000 !important;
}

.custom-btn-secondary.custom-btn-outline,
.custom-btn-yellow.custom-btn-outline {
    background-color: transparent !important;
    border-color: #FFC800 !important;
    color: #FFC800 !important;
}

.custom-btn-secondary.custom-btn-outline:hover,
.custom-btn-yellow.custom-btn-outline:hover {
    background-color: #FFC800 !important;
    border-color: #FFC800 !important;
    color: #000000 !important;
}

/* Orange Color */
.custom-btn-orange.custom-btn-solid {
    background-color: #ff8637 !important;
    border-color: #ff8637 !important;
    color: #ffffff !important;
}

.custom-btn-orange.custom-btn-solid:hover {
    background-color: #e6732e !important;
    border-color: #e6732e !important;
    color: #ffffff !important;
}

.custom-btn-orange.custom-btn-outline {
    background-color: transparent !important;
    border-color: #ff8637 !important;
    color: #ff8637 !important;
}

.custom-btn-orange.custom-btn-outline:hover {
    background-color: #ff8637 !important;
    border-color: #ff8637 !important;
    color: #ffffff !important;
}

/* Red Color */
.custom-btn-red.custom-btn-solid {
    background-color: #FE2B38 !important;
    border-color: #FE2B38 !important;
    color: #ffffff !important;
}

.custom-btn-red.custom-btn-solid:hover {
    background-color: #e5252f !important;
    border-color: #e5252f !important;
    color: #ffffff !important;
}

.custom-btn-red.custom-btn-outline {
    background-color: transparent !important;
    border-color: #FE2B38 !important;
    color: #FE2B38 !important;
}

.custom-btn-red.custom-btn-outline:hover {
    background-color: #FE2B38 !important;
    border-color: #FE2B38 !important;
    color: #ffffff !important;
}

/* Purple Color */
.custom-btn-purple.custom-btn-solid {
    background-color: #3f3479 !important;
    border-color: #3f3479 !important;
    color: #ffffff !important;
}

.custom-btn-purple.custom-btn-solid:hover {
    background-color: #332a63 !important;
    border-color: #332a63 !important;
    color: #ffffff !important;
}

.custom-btn-purple.custom-btn-outline {
    background-color: transparent !important;
    border-color: #3f3479 !important;
    color: #3f3479 !important;
}

.custom-btn-purple.custom-btn-outline:hover {
    background-color: #3f3479 !important;
    border-color: #3f3479 !important;
    color: #ffffff !important;
}

/* Focus states for accessibility */
.custom-btn:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

/* Disabled state */
.custom-btn:disabled,
.custom-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.custom-btn:disabled:hover,
.custom-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}
