/* =========================================================
   Ainexa AI Business Radar Dashboard
   ========================================================= */


/* =====================
   Global
===================== */

body{

    background:#faf7f2;

    color:#111827;

    font-family:
        Inter,
        Arial,
        sans-serif;

    padding:40px;

}


/* =====================
   Header
===================== */

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;

}


header h1{

    font-size:32px;

    font-weight:800;

    color:#315b20;

    margin:0;

}


/* =====================
   Header Navigation
===================== */

header a{

    color:#1f2937;

    text-decoration:none;

    font-weight:600;

    transition:.2s;

}


header a:hover{

    color:#65a30d;

}


/* =====================
   Titles
===================== */

h2{

    font-size:36px;

    margin-top:60px;

    margin-bottom:20px;

    letter-spacing:-1px;

}


/* =====================
   Opportunity Cards
===================== */

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:30px;

}


.card{

    background:white;

    padding:35px;

    border-radius:24px;

    border:1px solid #eadfce;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.06);

    transition:.2s;

}


.card:hover{

    transform:translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.1);

}


.card h3{

    font-size:22px;

    margin-top:0;

    margin-bottom:10px;

}


.card h1{

    font-size:56px;

    margin:20px 0;

    color:#7cb518;

}


.card p{

    color:#64748b;

    font-size:17px;

    margin-bottom:0;

}


/* =====================
   Opportunity Tags
===================== */

.card span{

    display:inline-block;

    margin-top:15px;

    padding:8px 15px;

    border-radius:20px;

    background:#f1f8d8;

    color:#7cb518;

    font-weight:700;

}


/* =====================
   Trending Table
===================== */

table{

    width:100%;

    margin-top:40px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    border-collapse:collapse;

    border:1px solid #eadfce;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.05);

}


th{

    background:#fff8dc;

    font-weight:700;

    color:#111827;

}


td,
th{

    padding:20px;

    text-align:left;

    border-bottom:1px solid #f1eadc;

}


tr:last-child td{

    border-bottom:none;

}


td{

    color:#475569;

}


/* =====================
   Latest Opportunity
===================== */

.report{

    background:white;

    padding:40px;

    border-radius:24px;

    margin-top:30px;

    border:1px solid #eadfce;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.06);

}


.report h3{

    font-size:28px;

    margin-top:0;

    color:#111827;

}


.report p{

    color:#64748b;

    font-size:18px;

    line-height:1.8;

}


/* =====================
   Responsive
===================== */

@media(max-width:800px){

    body{

        padding:20px;

    }


    header{

        flex-direction:column;

        gap:20px;

        align-items:flex-start;

    }


    header h1{

        font-size:28px;

    }


    .cards{

        grid-template-columns:1fr;

    }


    h2{

        font-size:30px;

    }


    .card{

        padding:28px;

    }


    .report{

        padding:28px;

    }

}
