.uniburma-sms-wrapper {
    margin: 20px 0;
}

.uniburma-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.uniburma-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.uniburma-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}

.uniburma-filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.uniburma-table-wrap {
    overflow-x: auto;
}

.uniburma-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 600;
}

.uniburma-alert-success {
    background: #ecf7ed;
    border: 1px solid #badbcc;
    color: #0f5132;
}

.uniburma-alert-danger {
    background: #fdecec;
    border: 1px solid #f5c2c7;
    color: #842029;
}

.uniburma-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.uniburma-stat-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.uniburma-stat-card h3 {
    margin-top: 0;
    font-size: 16px;
}

.uniburma-stat-card p {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

.uniburma-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.uniburma-badge-success {
    background: #d1e7dd;
    color: #0f5132;
}

.uniburma-badge-danger {
    background: #f8d7da;
    color: #842029;
}

.uniburma-badge-warning {
    background: #fff3cd;
    color: #664d03;
}

.uniburma-badge-default {
    background: #e2e3e5;
    color: #41464b;
}

.uniburma-card input[type="date"],
.uniburma-card select,
.uniburma-card textarea {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991px) {
    .uniburma-grid,
    .uniburma-filter-grid,
    .uniburma-stats-grid {
        grid-template-columns: 1fr;
    }
}