*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:linear-gradient(120deg,#e0f2fe,#f0fdf4);
    min-height:100vh;
}

/* HEADER */
.header{
    background:#2563eb;
    color:white;
    padding:25px;
    text-align:center;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;
}

.header h1{
    font-size:26px;
    font-weight:600;
}

.header p{
    font-size:14px;
    opacity:0.9;
}

/* MENU */
.menu{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

.menu a{
    background:white;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    color:#2563eb;
    font-weight:500;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.menu a:hover{
    background:#2563eb;
    color:white;
    transform:translateY(-3px);
}

/* CONTENT */
.content{
    background:white;
    max-width:900px;
    margin:30px auto;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
}

.content h2{
    color:#2563eb;
    margin-bottom:15px;
}

.content p{
    color:#444;
}

/* FORM */
form{
    display:grid;
    gap:15px;
    max-width:400px;
    margin:0 auto;
}

input,select{
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
    outline:none;
}

input:focus,select:focus{
    border-color:#2563eb;
}

button{
    background:#22c55e;
    color:white;
    border:none;
    padding:12px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#16a34a;
    transform:scale(1.05);
}

/* TABLE */
table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:#2563eb;
    color:white;
    padding:12px;
}

td{
    padding:10px;
    text-align:center;
    border-bottom:1px solid #eee;
}

tr:hover{
    background:#f0fdf4;
}

/* IMAGE */
img{
    margin-bottom:15px;
}
