/* AI Talent Acquisition Dashboard Custom Styles */

.upload-area {
    transition: all 0.3s ease;
}

.upload-area:hover {
    background-color: #f8f9fa;
    border-color: #0d6efd !important;
}

.card-metric {
    transition: transform 0.2s;
}

.card-metric:hover {
    transform: translateY(-3px);
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #000;
    box-shadow: none;
}

.hover-lift {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* ========================================== */
/* AUTHENTICATION (LOGIN & REGISTER) PAGES    */
/* ========================================== */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* bg-light rengi */
}

.auth-card {
    max-width: 400px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
}

/* ========================================== */
/* PRICING PAGE STYLES                        */
/* ========================================== */

.pricing-card {
    transition: transform 0.3s ease-in-out;
    border-radius: 1rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}