/* Layout */

.layout{
    display:flex;
    height:100vh;
}

/* Sidebar */

.sidebar{
    width:220px;
    background:#171717;
    padding:0 20px;
    border-right:1px solid #2a2a2a;
}

.logo{
    margin-bottom:40px;
}

/* Menu */

.menu{
    display:flex;
    flex-direction:column;
}

.menu-item{
    text-decoration:none;
    color:#cfcfcf;
    padding:12px 15px;
    border-radius:6px;
    margin-bottom:8px;
    font-size:15px;
}

.menu-item:hover{
    background:#2a2a2a;
    color:white;
}

.menu-item.active{
    background:#2a2a2a;
    color:white;
}

/* Main Content */

.content{
    flex:1;
    padding:40px;
}


body {
    font-family: Arial, sans-serif;
    background:#2c2c2c;
    color:white;
    margin:0;
}

h1 {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom:15px;
}

.controls{
    margin-bottom:20px;
}

.timein {
    background: #2ecc71;
}

.break {
    background: #f1c40f;
}

.timeout {
    background: #e74c3c;
}

table{
    width:100%;
    margin-top:25px;
    border-collapse:collapse;
    background:#1f1f1f;
    border-radius:8px;
    overflow:hidden;
}

thead{
    background:#1a1a1a;
}

th{
    padding:14px;
    font-size:14px;
    font-weight:600;
    border-bottom:1px solid #333;
}

td{
    padding:12px;
    border-bottom:1px solid #2f2f2f;
}

tbody tr:hover{
    background:#262626;
}

th, td{
    text-align:center;
}

.total {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.deleteBtn{
background:#c0392b;
color:white;
border:none;
padding:6px 10px;
border-radius:4px;
cursor:pointer;
}

.deleteBtn:hover{
background:#e74c3c;
}

/* Logout Button */

.logout {
    margin-top: auto;
    background: #c0392b;
    color: white;
}

.logout:hover {
    background: #e74c3c;
}