.org-oc-container {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #F8F9FF, #F1F4FF);
    padding: 2rem;
}

.org-oc-content {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: orgOcFadeInUp 0.5s forwards;
}

@keyframes orgOcFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.org-oc-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.org-oc-card-header {
    background: linear-gradient(to right, #24184A, #2B28BD);
    color: white;
    padding: 1.75rem;
    position: relative;
}

.org-oc-card-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.org-oc-card-content {
    padding: 2rem;
}

.org-oc-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.org-oc-section-header {
    background: #f8f9fa;
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
}

.org-oc-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #24184A;
    margin: 0;
}

.org-oc-section-content {
    padding: 1.75rem;
}

.org-oc-table {
    width: 100%;
    border-collapse: collapse;
}

.org-oc-table th,
.org-oc-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.org-oc-table th {
    font-weight: 600;
    color: #4a5568;
    background-color: #f9fafb;
    width: 30%;
}

.org-oc-nested-table {
    margin: 0;
    width: 100%;
}

.org-oc-nested-table th,
.org-oc-nested-table td {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
}

.org-oc-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    background-color: #DEF7EC;
    color: #03543F;
}

.org-oc-amount {
    font-weight: 600;
    color: #24184A;
}

.org-oc-discount {
    color: #10B981;
    font-weight: 600;
}

.org-oc-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.org-oc-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #24184A, #2B28BD);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.org-oc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.org-oc-button i {
    margin-right: 0.75rem;
}

/* Print styles */
@media print {
    .org-oc-container {
        background: none;
        padding: 0;
    }

    .org-oc-button {
        display: none;
    }

    .org-oc-card {
        box-shadow: none;
        margin-bottom: 1rem;
    }

    .org-oc-section-header {
        cursor: default;
    }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .org-oc-container {
        padding: 1rem;
    }

    .org-oc-card-title {
        font-size: 1.5rem;
    }

    .org-oc-section-title {
        font-size: 1.25rem;
    }

    .org-oc-table th,
    .org-oc-table td {
        padding: 0.75rem;
    }
}