body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.header {
    padding: 50px;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.nav {
    text-align: right;
}

.nav a {
    text-decoration: none;
    color: #007BFF;
    margin-inline: 15px;
}

.clock {
    margin: 0 auto;
    margin-top: 30px;
    width: 150px;
    height: 150px;
}

.sockets {
    margin: 0 auto;
    margin-top: 30px;
    width: auto;
    max-width: 700px;
    height: auto;
}

.export-actions {
    margin-top: 5px;
    margin-left: 550px;
}

.export-csv {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #007BFF;
    border-radius: 6px;
    text-decoration: none;
    color: #007BFF;
    background: #fff;
}

.export-csv:hover {
    background: #007BFF;
    color: #fff;
}

.time-sheet {
    cursor: grab;
    user-select: none;
    width: 300px;
    position: absolute;
    left: 15%;
    top: 25%;
}

.time-sheet:active {
    cursor: grabbing;
}

.footer {
    margin-top: 50px;
    padding: 10px;
}

.footer span {
    transition: color 2s ease;
}

.footer span:hover {
    color: #e2515f;
    transition: color 0.1s ease;
}

.footer a {
    text-decoration: none;
    color: inherit;
}

.footer a:hover {
    text-decoration: none;
    color: #007BFF;
}
