@charset "utf-8";

/* CSS Document */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f4f4;
}

.container{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:250px;
    background:#2f3e52;
    color:white;
    padding:30px 20px;
}

.sidebar h2{
    margin-bottom:30px;
    font-size:38px;
}

.sidebar ul{
    list-style:none;
}

.sidebar ul li{
    margin:22px 0;
    font-size:22px;
    cursor:pointer;
}

.sidebar ul li:hover{
    color:#00c3ff;
}

.content{
    flex:1;
    padding:40px;
}

.content h1{
    font-size:50px;
    margin-bottom:25px;
}

.cards{
    display:flex;
    gap:25px;
    margin-bottom:40px;
}

.card{
    background:white;
    width:300px;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.card h3{
    font-size:30px;
    margin-bottom:10px;
}

.card p{
    font-size:28px;
}

.content h2{
    font-size:40px;
    margin-bottom:20px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:white;
}

th,
td{
    padding:18px;
    border-bottom:1px solid #ddd;
    text-align:left;
    font-size:24px;
}

th{
    background:#f3f3f3;
}