.capacity-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    margin: 20px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 3px solid #ff6b35;
}

.capacity-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.modal-content h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 24px;
}

.modal-content p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.capacity-notice {
    position: relative;
}

.capacity-notice::after {
    content: "";
    font-size: 0.8em;
    color: #ff6b35;
    font-weight: bold;
}