body {
    /*background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);*/
    /*min-height: 100vh;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    /*color: #fff;*/
}
.clock-container {
    /*background: rgba(0, 0, 0, 0.7);*/
    background: linear-gradient(135deg, #1a5c9e, #2fa4e7, #7dc4f3);
    /*linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);*/
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 100%;
    /*max-width: 600px;*/
}
.clock-display {
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.clock-display:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}
.milliseconds {
    font-size: 2rem;
    color: #ffcc00;
}
.info-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.info-table td {
    padding: 12px 15px;
    border-color: rgba(255, 255, 255, 0.2);
}
.info-table tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.2);
}
.copy-hint {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    opacity: 0.8;
}
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(25, 135, 84, 0.9);
    color: white;
    border-radius: 8px;
}
.section-title {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}
