.ssm-notice {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.ssm-notice--success {
    background: #e9f7ef;
    color: #1f5d38;
}

.ssm-notice--error {
    background: #fdecec;
    color: #8a1f1f;
}

.ssm-property-rooms-wrapper,
.ssm-dashboard,
.ssm-property-list {
    margin-top: 2rem;
}

.ssm-room-list,
.ssm-bed-grid,
.ssm-dashboard__grid,
.ssm-property-list {
    display: grid;
    gap: 1rem;
}

.ssm-bed-grid,
.ssm-dashboard__grid,
.ssm-property-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ssm-room-card,
.ssm-bed-card,
.ssm-dashboard__card,
.ssm-property-item {
    padding: 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #fff;
}

.ssm-bed-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ssm-bed-card__number,
.ssm-bed-card__booked {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #f1f1f1;
    font-size: 0.85rem;
}

.ssm-button {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    background: #1f4b99;
    color: #fff;
    padding: 0.7rem 1rem;
    cursor: pointer;
}

.ssm-dashboard input,
.ssm-dashboard select,
.ssm-dashboard textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
}

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

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

.ssm-table th,
.ssm-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #ececec;
    text-align: left;
}

.ssm-empty {
    color: #666;
}

@media (max-width: 640px) {
    .ssm-room-card,
    .ssm-bed-card,
    .ssm-dashboard__card,
    .ssm-property-item {
        padding: 0.85rem;
    }
}
