.dila-settings-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.dila-settings-main {
    flex: 1;
}
.dila-settings-sidebar {
    width: 300px;
}
.dila-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}
.dila-card h2 {
    margin-top: 0;
    font-size: 14px;
    font-weight: 600;
}
.dila-status-progress {
    color: #2271b1;
}
.dila-status-progress .dashicons {
    animation: rotation 2s infinite linear;
}
@keyframes rotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(359deg); }
}
