* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            position: relative;
        }

        .logo {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            height: auto;
            width: 140px;
        }

        .container {
            display: flex;
            height: 100vh;
        }

        .form-section {
            flex: 1;
            background-color: white;
            padding: 40px;
            margin-left: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .color-section {
            flex: 1;
            background:#FF12434D;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Stati invertiti */
        .container.inverted .form-section {
            background-color: #FF12434D;
        }

        .container.inverted .color-section {
            background-color: white;
        }

        .container.inverted .form-title {
            color: white;
        }

        .container.inverted .form-label {
            color: white;
        }

        .color-section img {
            width: 650px;
            height: auto;
            margin-top: 100px;
            margin-bottom: 20px;
            position: relative;
        z-index: 1;
        }

        .color-section img.flipped {
            transform: scaleX(-1) !important;
        }
        
        /* Classe alternativa più specifica */
        img.flipped {
            transform: scaleX(-1) !important;
        }

        .color-section::before {
            content:"";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #FF12434D;
            z-index: 2;
            pointer-events: none;
        }

        .form-container {
            padding: 30px;
            border-radius: 15px;
            width: 100%;
            max-width: 700px;
        }

        .form-title {
            margin-bottom: 25px;
            color: #333;
            font-size: 60px;
            font-weight: bold;
            line-height: 68px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }

        .form-input {
            width: 320px !important;
            max-width: 320px;
            padding: 12px 15px;
            border: 3px solid #D9D9D9;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-button {
            width: 220px;
            padding: 12px;
            background: #0053FF;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .form-button2 {
            width: 220px;
            height: 46px;
            padding: 12px;
            background: #FF1243;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
            text-decoration: none;
            display: inline-block;
                text-align: center;
        }

        .form-button:hover {
            transform: translateY(-2px);
        }

        .form-button2:hover {
            transform: translateY(-2px);
            background: #e0103a;
        }

        /* ===== FORM FOOTER STYLES ===== */
        .form-footer {
            margin-top: 30px;
            text-align: left;
        }

        .forgot-password {
            margin-bottom: 25px;
        }

        .form-link {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .form-link:hover {
            color: #5a6fd8;
            text-decoration: underline;
        }

        .color-content {
            text-align: center;
            color: white;
        }

        .color-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .color-subtitle {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .decorative-circles {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 6s ease-in-out infinite;
        }

        .circle1 {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle2 {
            bottom: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .circle3 {
            top: 60%;
            left: 70%;
            width: 150px;
            height: 150px;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Layout mobile - nasconde tutto tranne logo e form */
            
            /* Nasconde il toggle switch */
            .curved-toggle-switch {
                display: none !important;
            }
            
            /* Nasconde la sezione colorata */
            .color-section {
                display: none !important;
            }
            
            /* Logo rimane visibile ma più piccolo */
            .logo {
                width: 100px;
                top: 15px;
                right: 15px;
            }
            
            /* Container diventa full width per solo il form */
            .container {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                min-height: 100vh;
                padding: 20px;
            }
            
            /* Form section diventa centrata */
            .form-section {
                flex: none;
                width: 100%;
                max-width: 400px;
                padding: 30px 20px;
                background-color: white;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            /* Form container adattato */
            .form-container {
                width: 100%;
                padding: 20px;
            }
            
            /* Titolo più piccolo */
            .form-title {
                font-size: 36px;
                line-height: 42px;
                text-align: center;
            }
            
            /* Input più piccoli */
            .form-input {
                width: 100%;
                max-width: 350px;
            }
            
            /* Bottoni responsive */
            .form-button, .form-button2 {
                width: 100%;
                max-width: 280px;
            }
            
            /* Footer responsive per tablet */
            .footerBar {
                flex-direction: column;
                justify-content: center !important;
                gap: 30px;
                padding: 30px 20px;
                text-align: center;
            }
            
            .footerBar .logo-footer {
                flex-basis: auto;
                order: -1;
            }
            
            .footerBar .title-and-text {
                flex-basis: auto;
                align-items: center;
            }
            
            .footerBar .title-and-text p {
                max-width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            /* Mobile piccoli - ottimizzazioni extra */
            
            /* Logo ancora più piccolo */
            .logo {
                width: 80px;
                top: 10px;
                right: 10px;
            }
            
            /* Container con padding ridotto */
            .container {
                padding: 15px;
            }
            
            /* Form section più compatta */
            .form-section {
                padding: 20px 15px;
                max-width: 350px;
            }
            
            /* Form container più piccolo */
            .form-container {
                padding: 15px;
            }
            
            /* Titolo più piccolo per mobile */
            .form-title {
                font-size: 28px;
                line-height: 34px;
            }
            
            /* Input completamente responsive */
            .form-input {
                width: 100%;
                padding: 10px 12px;
                font-size: 15px;
            }
            
            /* Footer adattato se presente */
            .form-footer {
                margin-top: 20px;
            }
            
            /* Link e testi più piccoli */
            .form-link, .register-text {
                font-size: 13px;
            }
            
            /* Footer responsive per mobile piccoli */
            .footerBar {
                padding: 20px 15px;
                gap: 20px;
            }
            
            .footerBar .logo-footer img {
                width: 100px;
            }
            
            .footerBar .title-and-text h6 {
                font-size: 14px;
                line-height: 20px;
            }
            
            .footerBar .title-and-text p {
                font-size: 12px;
                line-height: 18px;
            }
            
            .footerBar .title-and-text .social-line {
                gap: 10px;
                justify-content: center;
            }
            
            .footerBar .title-and-text .social-line img {
                width: 24px;
                height: 24px;
            }
        }
        /**================= candidatura CSS =================*/
        
        /* Stili per la pagina candidature */
        .main-candidature {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
            padding-bottom: 60px;
        }

        .header-candidature {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 60px;
        }

        .main-candidature h1 {
            font-size: 35px;
            font-weight: 400;
            color: #333;
            margin-bottom: 40px;
        }

        .cards-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 800px;
            gap: 20px;
        }

        .buttons-candidature {
            display: flex;
            flex-direction: row;
            gap: 50px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-candidature {
            padding: 10px 10px;
            border: none;
            border-radius: 20px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 180px;
            text-align: center;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        /* Colori diversi per ogni bottone */
        .btn-candidature:nth-child(1) {
            background-color: #0053FF; /* Blu per "Offerte salvate" */
        }

        .btn-candidature:nth-child(2) {
            background-color: #FF1243; /* Rosso per "Inoltrate" */
        }

        .btn-candidature:nth-child(3) {
            background-color: #6c757d; /* Grigio per "Archiviate" */
        }

        .btn-candidature:nth-child(4) {
            background-color: #FFD400; /* Giallo per "In Attesa" */
        }

        /* Stili per le card delle candidature */
        .card-candidature {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
            position: relative;
            width: 100%;
            max-width: 600px;
            transition: box-shadow 0.3s ease;
        }



        .card-candidature:hover {
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        /* Logo dell'azienda */
        .logo-company {
            width: 80px;
            height: 80px;
            background-color: #FF1243;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            margin-right: 20px;
            flex-shrink: 0;
            border-radius: 8px;
        }

        /* Informazioni azienda */
        .info-company {
            flex-grow: 1;
            padding-right: 80px;
        }

        .info-company h2 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin: 0 0 8px 0;
        }

        .info-company p {
            font-size: 14px;
            color: #666;
            margin: 4px 0;
            line-height: 1.4;
        }

        /* Status indicator in alto a destra */
        .status-company {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .status-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            position: relative;
        }

        .status-indicator::after {
            content: attr(data-status);
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            color: #333;
        }

        /* Colori per i diversi stati */
        .status-indicator.accepted {
            background-color: #0053FF;
        }

        .status-indicator.pending {
            background-color: #FF1243;
        }

        .status-indicator.rejected {
            background-color: #6c757d;
        }

        .status-indicator.waiting {
            background-color: #FFD400;
        }

        /* Icona occhio per visualizzazione */
        .eye-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .eye-icon:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .eye-icon svg {
            width: 100%;
            height: 100%;
            transition: all 0.3s ease;
        }

        /* Occhio aperto - candidatura visualizzata */
        .eye-icon.viewed {
            color: #4CAF50;
        }

        .eye-icon.viewed:hover {
            color: #45a049;
        }

        /* Occhio chiuso - candidatura non visualizzata */
        .eye-icon.not-viewed {
            color: #9e9e9e;
        }

        .eye-icon.not-viewed:hover {
            color: #757575;
        }

        /* Responsive per le card */
        @media (max-width: 768px) {
            .card-candidature {
                flex-direction: column;
                text-align: center;
                padding: 15px;
                position: relative;
            }
            
            .logo-company {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .info-company {
                padding-right: 0;
            }
            
            .status-company {
                position: static;
                margin-top: 15px;
            }
            
            .eye-icon {
                bottom: 10px;
                right: 10px;
                width: 20px;
                height: 20px;
            }
        }

        /* Effetti hover */
        .btn-candidature:nth-child(1):hover {
            background-color: #0053FF;
            transform: translateY(-2px);
        }

        .btn-candidature:nth-child(2):hover {
            background-color: #FF1243;
            transform: translateY(-2px);
        }

        .btn-candidature:nth-child(3):hover {
            background-color: #545b62;
            transform: translateY(-2px);
        }

        .btn-candidature:nth-child(4):hover {
            background-color: #FFD400;
            transform: translateY(-2px);
        }

        /* Responsive per mobile */
        @media (max-width: 768px) {
            .btn-candidature-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-candidature {
                width: 100%;
                max-width: 280px;
            }
            
            .main-candidature h1 {
                margin-bottom: 30px;
            }
        }
        
    /* Stili mobile per hamburger menu */
    @media (max-width: 768px) {
        .navBar{
            padding: 25px !important;
        }
        .navBar .logo-nav img{
            width: 110px !important;
        }
        .navBar .nav-links {
            display: flex;
            flex-direction: column !important;
            justify-content: center;
            align-items: center;
            gap: 40px;
            background-color: #ffffffe6;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            transform: translateX(100%);
            transition: transform 0.6s ease-in-out;
            z-index: 1000;
        }
    }
        .navBar .nav-links.active {
            transform: translateX(0);
            display: flex;
            justify-content: center;
            flex-direction: column;
        }
        .navBar .page-nav {
            flex-direction: column !important;
            align-items: center;
            gap: 30px;
            flex-basis: 30% !important;
        }
        .navBar .sign-in-nav {
            flex-basis: auto;
        }
        .navBar .sign-in-nav a{
            height: fit-content;
        }
        .hamburger-menu {
            display: block !important;
        }
        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
    

    /* Stili desktop - nasconde hamburger menu e forza layout orizzontale */
    @media (min-width: 769px) {
        .hamburger-menu {
            display: none !important;
        }
        .navBar {
            display: flex !important;
            flex-direction: row !important;
            justify-content: flex-start !important;
            align-items: center !important;
            padding: 50px !important;
            gap: 90px !important;
        }
        .navBar .nav-links {
            flex-direction: row !important;
            justify-content: flex-start !important;
            align-items: center !important;
            gap: 30px !important;
            position: static !important;
            transform: none !important;
            background: none !important;
            width: auto !important;
            height: auto !important;
            flex-grow: 0 !important;
        }
        .navBar .page-nav {
            display: flex !important;
            flex-direction: row !important;
            justify-content: space-around !important;
            flex-basis: 70% !important;
        }
        .navBar .sign-in-nav {
            display: flex !important;
            flex-basis: 15% !important;
            justify-content: flex-end !important;
        }
        .navBar .sign-in-nav a {
            display: inline-block !important;
            visibility: visible !important;
            opacity: 1 !important;
            padding: 8px 22px !important;
            background-color: #0053FF !important;
            border-radius: 12px !important;
            color: #ffffff !important;
            text-decoration: none !important;
            font-weight: 400 !important;
            font-size: 20px !important;
            line-height: 28px !important;
            max-width: 120px !important;
            text-align: center !important;
            text-decoration: uppercase;
            border: none !important;
            z-index: 999 !important;
            position: relative !important;
            cursor: pointer !important;
        }
    }

    /*Sezione NavBar*/
.navBar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navBar .logo-nav{
    flex-basis: 10%;
}
.navBar .logo-nav img{
    width: 140px;
    height: auto;
}
.navBar .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 90%;
}
.navBar .page-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-basis: 70%;
}
.navBar .page-nav a{
    text-decoration: none;
}
.navBar .page-nav h5{
    font-weight: 400;
    font-size: 25px;
    line-height: 33px;
    color: #000;
    cursor: pointer;
}
/*rendi attiva la voce nel menù*/
.navBar .page-nav a.active h5{
    color: #007BFF;
    font-weight: 500;
}
.navBar .sign-in-nav{
    display: flex;
    justify-content: flex-end;
    flex-basis: 15%;
}
.nav-avatar-container{
    flex-basis: 15%;
    display: flex;
    justify-content: center;
}
.nav-avatar-container a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bluITS);
}
#nav-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger-menu span {
    display: block;
    width: 20px;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/**================= Contattaci CSS =================*/

/* Stili per la pagina contattaci */
.main-contattaci {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: auto;
    padding: 80px 20px 20px 20px;
}

.container-contattaci {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.container-contattaci h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.container-contattaci h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
}

.container-contattaci p {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

.container-contattaci p:last-of-type {
    margin-top: 0;
}

.highlight-text {
    color: #FF1243;
    font-weight: 600;
}

/* Stili per le card di contatto */
.cards-contattaci {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 20px;
    flex-wrap: wrap;
}

.card-contattaci {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: 4px solid #000000;
    border-radius: 10px;
    background-color: white;
    min-width: 260px;
    height: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-contattaci:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card-contattaci img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.text-card-contattaci {
    display: flex;
    align-items: center;
}

.text-card-contattaci p {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .main-contattaci {
        padding: 60px 15px 20px 15px;
    }
    
    .container-contattaci {
        gap: 15px;
        margin-left: 5%;
    }
    
    .container-contattaci h1 {
        font-size: 1.8rem;
    }
    
    .container-contattaci h2 {
        font-size: 1.2rem;
    }
    
    .container-contattaci p {
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    /* Responsive per le card di contatto */
    .cards-contattaci {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .card-contattaci {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

/* Stili per il form di contatto */
.form-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 20px 40px 20px;
    box-sizing: border-box;
}

.form-contattaci {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.form-title-red {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FF1243;
    text-align: left;
    margin-bottom: 30px;
}

.form-contattaci form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    max-width: none;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: #FF1243;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.form-contattaci button {
    padding: 12px 25px;
    background-color: #0053FF;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
    align-self: flex-start;
}

.form-contattaci button:hover {
    background-color: #0040cc;
    transform: translateY(-2px);
}

/* Responsive per il form */
@media (max-width: 768px) {
    .form-section {
        padding: 20px 10px;
        justify-content: center;
    }
    
    .form-contattaci {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .form-title-red {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        max-width: 250px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-contattaci button {
        max-width: 100%;
    }
    
    .checkbox-group {
        max-width: 250px;
        width: 100%;
    }
}

/*footer*/
div.footerBar, .footerBar{
    display: flex !important;
    flex-direction: row;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 45px 50px 30px 50px;
    background-color: #d9d9d9;
    width: 100%;
    gap: 60px;
}

.footerBar .logo-footer{
    flex: 1;
    display: flex;
    justify-content: center !important;
}

.footerBar .logo-footer img{
    width: 140px;
    height: auto;
}

.footerBar .title-and-text{
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    text-align: center;
}

.footerBar .title-and-text h6{
    color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.footerBar .title-and-text p{
    color: #000;
    font-weight: 400;
    font-size: 13px;
    line-height: 21px;
    max-width: 90%;
}

.footerBar .title-and-text .social-line{
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
    justify-content: center !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footerBar {
        flex-direction: column;
        justify-content: center !important;
        gap: 25px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .footerBar .logo-footer {
        flex-basis: auto;
        justify-content: center;
        order: -1;
        margin-bottom: 20px;
    }
    
    .footerBar .title-and-text {
        flex-basis: auto;
        align-items: center;
        text-align: center;
    }
    
    .footerBar .title-and-text p {
        max-width: 100%;
        text-align: center;
    }
    
    .footerBar .title-and-text .social-line {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footerBar {
        justify-content: center !important;
        padding: 20px 15px;
        gap: 20px;
    }
    
    .footerBar .logo-footer img {
        width: 100px;
    }
    
    .footerBar .title-and-text h6 {
        font-size: 14px;
        line-height: 20px;
    }
    
    .footerBar .title-and-text p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .footerBar .title-and-text .social-line {
        gap: 10px;
    }
    
    .footerBar .title-and-text .social-line img {
        width: 24px;
        height: 24px;
    }
}
.footerBar .title-and-text .social-line{
    display: flex;
    flex-direction: row;
    gap: 15px;
}

/* Stili per profilo azienda */
.profilo-azienda {
    padding: 80px 50px 40px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-azienda {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    margin-left: 80px;
}

.foto-azienda {
    width: 200px;
    height: 200px;
    background-color: #FF1243;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-azienda h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
}

.info-azienda .settore {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.slogan-section {
    text-align: left;
    max-width: 800px;
    margin: 0;
    margin-left: 80px;
}

.slogan-section h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.slogan-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Sezione Progetti e News */
.progetti-news-section {
    background-color: #0053ff82;
    padding: 40px 20px;
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progetti-news-section h2 {
    color: black;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.offerte-lavoro-section {
    background-color: rgba(255, 18, 67, 0.3);
    padding: 40px 20px;
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offerte-lavoro-section h2 {
    color: black;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}


/* Responsive per profilo azienda */
@media (max-width: 768px) {
    .profilo-azienda {
        padding: 60px 20px 30px 20px;
    }
    
    .header-azienda {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 40px;
        margin-left: 0;
        justify-content: center;
    }
    
    .foto-azienda {
        width: 150px;
        height: 150px;
    }
    
    .slogan-section {
        text-align: center;
        margin: 0 auto;
        margin-left: 0;
    }
    
    .info-azienda h1 {
        font-size: 2rem;
    }
    
    .info-azienda .settore {
        font-size: 1rem;
    }
    
    .slogan-section h3 {
        font-size: 1.5rem;
    }
    
    .slogan-section p {
        font-size: 1rem;
    }
    
    .progetti-news-section {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .progetti-news-section h2 {
        font-size: 1.6rem;
    }

     .offerte-lavoro-section {
        padding: 30px 15px;
        margin-top: 40px;
    }

    .offerte-lavoro-section h2 {
        font-size: 1.6rem;
    }
}



/**================= Profilo azienda CSS =================*/

.foto-e-nome{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 48px 0px;
}
.foto-e-nome .right-side{
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* ========== CAROSELLO STYLES ========== */

/* Sezione principale del carosello */
.carousel-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

/* Container principale - dimensionato per mostrare esattamente 3 card */
.carousel-container {
    max-width: 750px; /* Larghezza per 3 card più piccole + gaps */
    margin: 0 auto;
}

/* Wrapper per nascondere le card che escono dai bordi */
.carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    position: relative;
}

/* Track che contiene tutte le card - questo elemento si muove */
.carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
}

/* Stili base per ogni card */
.carousel-card {
    flex-shrink: 0; /* Impedisce la compressione delle card */
    width: 220px;
    min-height: 300px;
    background: white;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    
    /* Effetti di transizione smooth */
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Stato normale: leggermente ridotta e trasparente */
    transform: scale(0.9);
    opacity: 0.7;
    
    /* Ombra base */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Card attiva (quella al centro) - ingrandita e in risalto */
.carousel-card.active {
    transform: scale(1.05); /* Ingrandimento moderato */
    opacity: 1;
    
    /* Ombra più pronunciata per effetto di elevazione */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    
    /* Porta in primo piano */
    z-index: 10;
    position: relative;
}

/* Placeholder per l'immagine - quadrato bianco */
.card-image {
    width: 100%;
    height: 140px;
    background-color: white;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 15px;
    
    /* Effetto subtle per distinguere il placeholder */
    background-image: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
                      linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
                      linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 15px 15px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
}

/* Contenuto testuale della card */
.card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px e sotto) */
@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 15px;
    }
    
    .carousel-container {
        max-width: 580px; /* Adatta per 3 card su tablet */
    }
    
    .carousel-track {
        gap: 20px;
    }
    
    .carousel-card {
        width: 170px;
        min-height: 260px;
        padding: 15px;
        transform: scale(0.95); /* Meno riduzione su tablet */
    }
    
    .carousel-card.active {
        transform: scale(1.02); /* Ingrandimento sottile su tablet */
    }
    
    .card-image {
        height: 140px;
        margin-bottom: 15px;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}

/* Mobile (480px e sotto) - Layout in colonna */
@media (max-width: 480px) {
    .carousel-section {
        padding: 40px 20px;
    }
    
    .carousel-container {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Disabilita il carosello su mobile */
    .carousel-wrapper {
        overflow: visible;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .carousel-track {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        transform: none !important; /* Disabilita le trasformazioni del carosello */
        transition: none;
        width: 100%;
        max-width: 350px;
    }
    
    .carousel-card {
        width: 100%;
        max-width: 320px;
        min-height: 320px;
        padding: 25px;
        transform: scale(1) !important; /* Tutte le card della stessa dimensione */
        opacity: 1 !important;
        position: static;
        z-index: auto;
        margin: 0 auto;
    }
    
    /* Rimuovi l'effetto active su mobile - tutte le card uguali */
    .carousel-card.active {
        transform: scale(1) !important;
        opacity: 1 !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    
    .card-image {
        height: 150px;
        margin-bottom: 18px;
    }
    
    .card-content h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .card-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/*================= flusso lavoro azienda CSS =================*/

/* ========== SEARCH BAR CON FILTRI ========== */

.main-flusso-lavoro-azienda {
    padding: 60px 20px 20px 20px;
    text-align: center;
}

.main-flusso-lavoro-azienda h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Input di ricerca */
.search-bar #searchInput {
    flex: 2;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
}

.search-bar #searchInput::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Select filters */
.search-bar select {
    flex: 1;
    padding: 15px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #f8f9fa;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a0aec0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.search-bar select:focus {
    border-color: #FF1243;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 18, 67, 0.1);
}

.search-bar select:hover {
    border-color: #cbd5e0;
}

/* Pulsante filtra */
.search-bar #filterButton {
    padding: 15px 25px;
    background: linear-gradient(135deg, #FF1243 0%, #e10f38 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.search-bar #filterButton:hover {
    background: linear-gradient(135deg, #e10f38 0%, #c90d31 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 18, 67, 0.3);
}

.search-bar #filterButton:active {
    transform: translateY(0);
}

/* Responsive per search-bar */
@media (max-width: 768px) {
    .main-flusso-lavoro-azienda {
        padding: 40px 15px 30px 15px;
    }
    
    .main-flusso-lavoro-azienda h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .search-bar {
        flex-direction: column;
        gap: 12px;
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .search-bar #searchInput,
    .search-bar select {
        width: 100%;
        flex: none;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .search-bar select {
        padding-right: 35px;
    }
    
    .search-bar #filterButton {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .main-flusso-lavoro-azienda h1 {
        font-size: 1.8rem;
    }
    
    .search-bar {
        margin: 0 10px 30px 10px;
        padding: 15px 12px;
    }
    
    .search-bar #searchInput,
    .search-bar select,
    .search-bar #filterButton {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* ========== FLUSSO LAVORO AZIENDA - RICERCA OFFERTE ========== */

/* Sezione principale */
.ricerca-offerte-di-lavoro {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

/* Titolo principale */
.ricerca-offerte-di-lavoro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

/* Container dei filtri - centrato */
.ricerca-offerte-di-lavoro .filter-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Wrapper della barra di ricerca */
.ricerca-offerte-di-lavoro .filter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.ricerca-offerte-di-lavoro .filter-input-wrapper:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ricerca-offerte-di-lavoro .filter-input-wrapper:focus-within {
    box-shadow: 0 12px 35px rgba(255, 18, 67, 0.2);
}

/* Input di ricerca */
.ricerca-offerte-di-lavoro #search-studente-input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: #2d3748;
}

.ricerca-offerte-di-lavoro #search-studente-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Freccia dropdown */
.ricerca-offerte-di-lavoro .dropdown-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #FF1243;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.ricerca-offerte-di-lavoro .dropdown-arrow:hover {
    color: #e10f38;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .ricerca-offerte-di-lavoro {
        padding: 40px 15px;
    }
    
    .ricerca-offerte-di-lavoro h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .ricerca-offerte-di-lavoro .filter-container {
        max-width: 100%;
    }
    
    .ricerca-offerte-di-lavoro #search-studente-input {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .ricerca-offerte-di-lavoro .dropdown-arrow {
        right: 15px;
        font-size: 1rem;
    }
}

/* ========== STILI FLUSSO LAVORO AZIENDA - COMPANY CARDS ========== */

.companies-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.company-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Info azienda - sezione principale */
.company-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Quadrato rosso per l'immagine */
.company-image-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF1243, #e10f38);
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 18, 67, 0.3);
}

/* Dettagli azienda */
.company-details {
    flex: 1;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.company-sector {
    font-size: 1rem;
    font-weight: 600;
    color: #FF1243;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Container per tags e pulsante - allineati orizzontalmente */
.company-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
}

/* Wrapper per i tag */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

/* Pulsante Contattami */
.contact-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #3182ce, #2c5aa0);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #2c5aa0, #2a4d8b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}

/* ========== RESPONSIVE COMPANY CARDS ========== */

@media (max-width: 768px) {
    .companies-container {
        margin: 30px auto;
        padding: 0 15px;
        gap: 20px;
    }
    
    .company-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .company-image-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .company-sector {
        font-size: 0.9rem;
    }
    
    .company-description {
        font-size: 0.9rem;
    }
    
    .company-tags {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }
    
    .tags-wrapper {
        justify-content: center;
    }
    
    .tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .contact-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-card {
        padding: 15px;
        margin: 0 5px;
    }
    
    .company-image-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .company-description {
        font-size: 0.85rem;
    }
    
    .tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* ========== STILI CANDIDATURE AZIENDA - BOTTONI ========== */

.btn-candidature-azienda {
    padding: 10px 10px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Colori diversi per ogni bottone azienda */
.btn-candidature-azienda:nth-child(1) {
    background-color: #0053FF; /* Blu per "Status" */
}

.btn-candidature-azienda:nth-child(2) {
    background-color: #FF1243; /* Rosso per "Settore" */
}

.btn-candidature-azienda:nth-child(3) {
    background-color: #000; /* Grigio per "Data" */
}

/* Effetti hover per bottoni azienda */
.btn-candidature-azienda:nth-child(1):hover {
    background-color: #003bb3;
    transform: translateY(-2px);
}

.btn-candidature-azienda:nth-child(2):hover {
    background-color: #cc0e36;
    transform: translateY(-2px);
}

.btn-candidature-azienda:nth-child(3):hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Responsive per bottoni candidature azienda */
@media (max-width: 768px) {
    .btn-candidature-azienda {
        width: 100%;
        max-width: 280px;
    }
}

/* ========== STILI CANDIDATURE AZIENDA - CARD ACTIONS ========== */

.card-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    min-width: 120px;
}

/* Percentuale di match */
.match-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
    text-align: center;
}

/* Bottone visualizza profilo */
.view-profile-btn {
    padding: 8px 16px;
    background:#0053FF;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 83, 255, 0.3);
}

.view-profile-btn:hover {
    background: #0053FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 83, 255, 0.4);
}

/* Toggle visualizzato */
.toggle-viewed {
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: underline;
    padding: 4px 8px;
    border-radius: 12px;
    text-align: center;
}

.toggle-viewed.viewed {
    color: #4CAF50;
}

.toggle-viewed.viewed:hover {
    color: #45a049;
    background: rgba(76, 175, 80, 0.1);
}

.toggle-viewed.not-viewed {
    color: #9e9e9e;
}

.toggle-viewed.not-viewed:hover {
    color: #757575;
    background: rgba(158, 158, 158, 0.1);
}

/* Responsive per card actions */
@media (max-width: 768px) {
    .card-actions {
        gap: 10px;
        min-width: 100px;
    }
    
    .match-percentage {
        font-size: 2rem;
    }
    
    .view-profile-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .toggle-viewed {
        font-size: 0.8rem;
    }
}
