#koms893-korban-form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.koms893-stock-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    gap: 40px;
}

.stock-item {
    color: #856404;
    font-size: 14px;
}

.stock-divider {
    width: 1px;
    height: 40px;
    background-color: #ffeeba;
}

.p2-form h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.p2-form-row {
    margin-bottom: 15px;
}

.p2-form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #444;
}

.p2-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.p2-req {
    color: red;
}

.p2-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: background 0.2s;
}

.p2-btn:hover {
    background: #005177;
}

/* Gray Participant Cards */
.participant-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.participant-card strong {
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.participant-grid {
    display: flex;
    gap: 15px;
}

@media (max-width: 600px) {
    .participant-grid {
        flex-direction: column;
    }
    .koms893-stock-summary {
        flex-direction: column;
        gap: 15px;
    }
    .stock-divider {
        display: none;
    }
}

.koms893-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.koms893-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}
