.content {
    background-color: white;
    height: auto;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #237227;
    margin-bottom: 30px;
}

.detail-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 900px;
}

.detail-group {
    margin-bottom: 25px;
}

.detail-label {
    font-size: 16px;
    font-weight: 600;
    color: #237227;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.items-list li {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.btn-terima {
    flex: 1;
    max-width: 200px;
    padding: 12px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-terima:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-tolak {
    flex: 1;
    max-width: 200px;
    padding: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-tolak:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-dikembalikan {
    flex: 1;
    max-width: 200px;
    padding: 12px;
    background: linear-gradient(135deg, #FFD786 0%, #237227 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-dikembalikan:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.catatan-section {
    margin-top: 30px;
}

.catatan-box {
    background-color: #237227;
    border-radius: 8px;
    padding: 20px;
    min-height: 150px;
    border: 1px solid #e2e8f0;
}

.btn-kirim {
    background-color: #237227;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    float: right;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-kirim:hover {
    background-color: #237227;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}
