/**
 * MELS Frontend Styles
 * Main styles for all frontend components
 */

/* Reset and base styles */
.mels-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Alerts */
.mels-alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.mels-alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.mels-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Dashboard Grid */
.mels-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mels-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility classes */
.mels-text-center {
    text-align: center;
}

.mels-mt-20 {
    margin-top: 20px;
}

.mels-mb-20 {
    margin-bottom: 20px;
}
