.srp-top-banner {
    background: #1f7a3d;
    color: #fff;
    position: relative;
    z-index: 99;
}

.srp-top-banner__inner,
.srp-dashboard,
.srp-card,
.srp-form,
.srp-info-block {
    box-sizing: border-box;
}

.srp-top-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.srp-top-banner__text {
    font-weight: 700;
    font-size: 16px;
}

.srp-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #1f7a3d;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.srp-button--light {
    background: #fff;
    color: #1f7a3d;
}

.srp-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.srp-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.srp-form input,
.srp-form select,
.srp-form textarea {
    width: 100%!important;
    padding: 10px 12px;
    border: 1px solid #cfd7df;
    border-radius: 8px;
}

.srp-grid {
    display: grid;
    gap: 16px;
}

.srp-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.srp-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.srp-dashboard__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.srp-dashboard__menu a {
    text-decoration: none;
    background: #f2f5f8;
    padding: 10px 14px;
    border-radius: 5px;
    color: #1c2733;
    font-weight: 600;
}

.srp-dashboard__menu .srp-logout {
	margin: 0;	
}

.srp-stats .srp-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.srp-stats strong {
    font-size: 28px;
    line-height: 1;
}

.srp-table-wrap {
    overflow-x: auto;
}

.srp-table {
    width: 100%;
    border-collapse: collapse;
}

.srp-table th,
.srp-table td {
    border-bottom: 1px solid #e7ebef;
    text-align: left;
    padding: 12px;
    vertical-align: top;
}

.srp-status {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.srp-status--pending {
    background: #fff3cd;
    color: #8a6d3b;
}

.srp-status--confirmed {
    background: #d1e7dd;
    color: #0f5132;
}

.srp-alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin: 16px 0;
    font-weight: 600;
}

.srp-alert--success {
    background: #eaf7ee;
    color: #155724;
    border: 1px solid #cdebd5;
}

.srp-alert--error {
    background: #fff0f1;
    color: #842029;
    border: 1px solid #f5c2c7;
}

@media (max-width: 782px) {
    .srp-grid--2,
    .srp-grid--4 {
        grid-template-columns: 1fr;
    }
}
