
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f8fafc;
}

.container{
    width:95%;
    max-width:1000px;
    margin:20px auto;
}

.logo{
    float:right;
}

.logo img{
    width:150px;
}

h1{
    color:#176ced;
    margin-bottom:5px;
}

p{
    color:#555;
}

.controls{
    margin:20px 0;
}

input[type="text"],
input[type="date"]{
    padding:8px;
    border:1px solid #ccc;
    border-radius:5px;
}

button{
    padding:8px 15px;
    border:none;
    border-radius:5px;
    background:#176ced;
    color:white;
    cursor:pointer;
}

.card{
    background:white;
    border-radius:8px;
    padding:15px;
    box-shadow:0 0 5px rgba(0,0,0,.1);
}

table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:#176ced;
    color:white;
    padding:10px;
}

td{
    border:1px solid #ddd;
    padding:10px;
}

td img{
    width:35px;
    height:35px;
    border-radius:50%;
}