/* ===== أنماط الاستيراد والتصدير ===== */
.import-export-buttons {
    display: flex;
    gap: 10px;
}

.import-export-buttons .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 8px 12px;
}

/* ===== أنماط زر إعادة التعيين ===== */
#reset-game {
    background-color: var(--danger-color);
    color: white;
    width: 100%;
    max-width: 200px;
}

#reset-game:hover {
    background-color: #c82333;
}

