.dynamic-time-restricted {
    position: relative;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.dtr-content {
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.dtr-message {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

.dtr-message-text {
    margin-bottom: 10px;
    font-weight: 500;
}

.dtr-clock {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
}

.dtr-current-time {
    display: block;
    margin-bottom: 5px;
}

.dtr-time-value {
    font-weight: bold;
    color: #007bff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.dtr-countdown {
    display: block;
    margin-top: 5px;
}

.dtr-countdown-text {
    font-weight: 500;
}

.dtr-countdown-timer {
    font-weight: bold;
    color: #28a745;
    font-family: 'Courier New', monospace;
}

/* Анимации */
.dtr-content,
.dtr-message {
    transition: all 0.3s ease;
}

/* Мигание для привлечения внимания к времени */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.dtr-time-value {
    animation: pulse 2s ease-in-out infinite;
}