.top-bar {
    width: 100%;
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-date-time {
    font-size: 14px;
    color: #333;
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials .social-icon {
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.top-bar-socials .social-icon:hover {
    color: #0073aa;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}