body{
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
}

/* LOGIN */
.login-container{
    background: white;
    width: 320px;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 120px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.login-container input{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* DASHBOARD */
h1{
    text-align: center;
    margin-top: 30px;
}

.dashboard-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
    padding: 20px;
}

.card{
    background: white;
    width: 240px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

/* CUSTOMER FORM */
.customer-form{
    width: 500px;
    background: white;
    margin: 40px auto;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.customer-form input{
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}

/* TABLE */
table{
    width: 90%;
    margin: 30px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

th{
    padding: 18px;
    background: #f2f2f2;
    text-align: center;
}

td{
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

tr:hover{
    background: #f7f7f7;
}

/* SEARCH */
.search-box{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-box input{
    width: 300px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* SORT */
.sort-buttons{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* NAVBAR */
.navbar{
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-links{
    display: flex;
    gap: 20px;
}

.nav-links a{
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover{
    transform: scale(1.08);
}

/* BUTTONS */
button{
    background: black;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover{
    transform: scale(1.04);
}

/* TITLE */
.customer-title{
    width: 90%;
    margin: 20px auto;
}

/* RESPONSIVE FIX */
@media(max-width:600px){
    .customer-form{
        width: 90%;
    }

    .search-box input{
        width: 60%;
    }
}