

.timestamp {
    font-size: 16px;
    margin: auto;
    color: #444;
    background: #ffffff;
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 15px;
    text-align: left;
    font-size: 1rem;
    color: #333;
}

table th {
    background-color: #007BFF;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.utc-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.utc-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.utc-button:active {
    background-color: #003f7f;
    transform: translateY(1px);
}
