*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    background:
            linear-gradient(
                    135deg,
                    #16253A 0%,
                    #223B5A 45%,
                    #30567E 100%
            );

    min-height:100vh;

}

.navbar{

    position:fixed;

    top:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 7%;

    background:rgba(13,71,161,.92);

    backdrop-filter:blur(12px);

    z-index:999;

}

.logo{

    color:white;

    font-size:28px;

    font-weight:700;

}

.nav-links{

    display:flex;

    gap:30px;

    list-style:none;

}

.nav-links a{

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:#90CAF9;

}

.primary-btn{

    background:linear-gradient(90deg,#1976D2,#42A5F5);

    color:white;

    padding:12px 28px;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-3px);

}/* ======================================
   COMMON CONTAINERS
====================================== */

.container{

    width:90%;
    max-width:1200px;
    margin:40px auto;

}

/* ======================================
   COMMON CARDS
====================================== */

.card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

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

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

/* ======================================
   COMMON BUTTONS
====================================== */

.button,
.primaryButton{

    display:inline-block;

    padding:14px 28px;

    background:#1976D2;

    color:white;

    text-decoration:none;

    border:none;

    border-radius:12px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.button:hover,
.primaryButton:hover{

    background:#1565C0;

}

.favorite{

    background:#E91E63;

}

.favorite:hover{

    background:#C2185B;

}

.edit{

    background:#1976D2;

}

.edit:hover{

    background:#1565C0;

}

.delete{

    background:#E53935;

}

.delete:hover{

    background:#C62828;

}

/* ======================================
   COMMON INPUTS
====================================== */

input,
textarea,
select{

    width:100%;

    padding:14px;

    border:1px solid #D1D5DB;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

    border-color:#1976D2;

    box-shadow:0 0 8px rgba(25,118,210,.2);

}

textarea{

    resize:vertical;

}

/* ======================================
   COMMON TITLES
====================================== */

.pageTitle{

    font-size:36px;

    font-weight:700;

    color:#1565C0;

    margin-bottom:30px;

    text-align:center;

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

/* Laptop */
@media screen and (max-width:1200px){

    .container{
        width:95%;
    }

}

/* Tablet */
@media screen and (max-width:992px){

    .container{
        width:95%;
    }

    .header,
    .navbar{

        padding:18px 5%;

    }

}

/* Mobile */
@media screen and (max-width:768px){

    .header,
    .navbar{

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:15px;

        padding:18px;

    }

    .logo{

        width:100%;
        text-align:center;

    }

    .search{

        width:100%;
        max-width:100%;

    }

    .container{

        width:95%;

    }

    .grid{

        display:grid;

        grid-template-columns:1fr;

        gap:20px;

    }

    .card{

        width:100%;

    }

    img{

        max-width:100%;

        height:auto;

    }

    table{

        display:block;

        overflow-x:auto;

    }

}

/* Small Phones */
@media screen and (max-width:480px){

    .logo{

        font-size:24px;

    }

    .search{

        font-size:14px;

        padding:12px 16px;

    }

    .button,
    button{

        width:100%;

    }

}