/* ==========================================
   REPORT DETAIL PAGE
========================================== */

.report-detail-page {
    background: #f7f4ff;
    min-height: calc(100vh - 90px);
    padding: 50px 30px 70px;
}


/* Main Card */

.report-detail-card {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;

    background: #ffffff;

    border-radius: 24px;

    padding: 40px;

    box-shadow: 0 10px 35px rgba(67, 32, 138, 0.10);
}


/* Page Heading */

.report-detail-card h1 {
    color: #45208C;

    font-size: 32px;

    margin-bottom: 30px;
}


/* Report Layout */

.report-detail-content {
    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 45px;

    align-items: start;
}


/* Image */

.report-detail-image {
    width: 100%;

    height: 360px;

    object-fit: cover;

    border-radius: 18px;

    border: 1px solid #eee;

    background: #f5f2ff;
}


/* Information */

.report-info h2 {
    color: #45208C;

    font-size: 27px;

    margin-bottom: 22px;
}


.report-info p {
    margin: 13px 0;

    color: #555;

    font-size: 15px;

    line-height: 1.6;
}


.report-info p strong {
    color: #45208C;

    font-weight: 600;
}


/* Status */

.report-status {
    display: inline-block;

    padding: 7px 16px;

    border-radius: 20px;

    background: #eee6ff;

    color: #5e2eb8;

    font-weight: 600;

    font-size: 14px;
}


/* Action Buttons */

.report-actions {
    margin-top: 30px;

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.report-btn {
    display: inline-block;

    padding: 12px 22px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    border: none;

    cursor: pointer;
}


/* Edit */

.report-btn.edit {
    background: #6F42C1;

    color: white;
}


.report-btn.edit:hover {
    background: #45208C;
}


/* Delete */

.report-btn.delete {
    background: #f3d9dd;

    color: #9b2635;
}


.report-btn.delete:hover {
    background: #e9c1c7;
}


/* Approved Message */

.report-message {
    margin-top: 25px;

    padding: 18px 20px;

    border-radius: 12px;

    background: #eee7ff;

    color: #45208C;

    line-height: 1.6;
}


/* Rejected Message */

.report-rejected {
    margin-top: 25px;

    padding: 18px 20px;

    border-radius: 12px;

    background: #f8d7da;

    color: #721c24;

    line-height: 1.6;
}
/* Back Button */

.detail-actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start;
}


.back-btn {
    display: inline-flex;
    align-items: center;

    padding: 12px 22px;

    background: #eee6ff;
    color: #45208C;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}


.back-btn:hover {
    background: #6F42C1;
    color: #ffffff;

    transform: translateY(-1px);
}
