/* === САЙДБАР === */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.weather-display {
    text-align: center;
    margin-bottom: 18px;
}

.weather-temp {
    font-size: 56px;
    font-weight: 800;
    color: #1e3c72;
    display: block;
    line-height: 1;
}

.weather-desc {
    font-size: 15px;
    color: #666;
}

.weather-forecast {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.day-name {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.day-icon {
    font-size: 26px;
}

.day-temp {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.status-item.ok {
    background: #d1fae5;
    border-left: 4px solid #10b981;
}

.status-item.error {
    background: #fee2e2;
    border-left: 4px solid #dc2626;
}

.status-icon {
    font-size: 22px;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #fef2f2;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.emergency-btn:hover {
    background: #fee2e2;
    transform: scale(1.02);
}

.emergency-icon {
    font-size: 30px;
}

.emergency-info {
    display: flex;
    flex-direction: column;
}

.emergency-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

.emergency-number {
    font-size: 17px;
    font-weight: 700;
    color: #dc2626;
}

.poll-question {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.poll-option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    font-weight: 500;
}

.poll-option:hover {
    border-color: #1e3c72;
    background: #eef2ff;
}

.poll-option.voted {
    background: #d1fae5;
    border-color: #10b981;
}

.poll-stats {
    font-size: 12px;
    color: #999;
    text-align: center;
}

