/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Modern font */
    background-color: #f4f7fa; /* Light background */
    color: #333; /* Default text color */
    line-height: 1.6;
}

/* Success Message Styling */
.success-message {
    padding: 15px;
    background-color: #4CAF50; /* Green */
    color: white;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 16px;
}

/* Main Container */
.container {
    width: 85%;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: #42A5F5; /* Blue */
    font-size: 2.4em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.2em;
    color: #666;
    font-weight: 400;
}

/* Report Table Styling */
.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.report-table th, .report-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
}

.report-table th {
    background-color: #42A5F5; /* Blue */
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
}

.report-table td {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease-in-out;
}

.report-table tr:hover td {
    background-color: #f1f1f1;
}

.report-table tr:nth-child(even) td {
    background-color: #f3f5f7;
}

/* Status Badges */
.status {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

.status.pending {
    background-color: #f39c12; /* Orange */
    color: white;
}

.status.resolved {
    background-color: #27ae60; /* Green */
    color: white;
}

.status.rejected {
    background-color: #e74c3c; /* Red */
    color: white;
}

/* Action Buttons */
.approve-btn, .reject-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.approve-btn {
    background-color: #4CAF50; /* Green */
    color: white;
}

.approve-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.reject-btn {
    background-color: #f44336; /* Red */
    color: white;
}

.reject-btn:hover {
    background-color: #e53935;
    transform: translateY(-2px);
}

/* Table Action Buttons */
td form {
    display: inline-block;
}

td form button {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

td form button:last-child {
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px;
    }

    .report-table th, .report-table td {
        font-size: 14px;
        padding: 10px;
    }

    .approve-btn, .reject-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .header h1 {
        font-size: 1.8em;
    }
}

</style>
