/**
 * MWS Common Styles
 */
.mws-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: mws-spin 0.8s linear infinite;
}
@keyframes mws-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.mws-notice {
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
}
.mws-notice-success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}
.mws-notice-error {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}
.mws-notice-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}
.mws-select2-container {
    max-width: 100%;
}
