/* Timesheet System Table Styles - Updated Design to match reference image */
.service-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
    background-color: #fff;
    color: #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.service-content th,
.service-content td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.service-content thead th {
    background-color: #FFE082 !important; /* Gold header */
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
}

.service-content tbody tr:hover {
    background-color: #f9f9f9;
}

.service-content h4 {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #FFE082; /* Gold text */
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Improved visibility for check and x icons */
.service-content td span.icon {
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 6px;
}

.service-content td span.icon:first-child {
    color: #4CAF50; /* Green for check */
    font-weight: bold;
}

.service-content td span.icon:contains("❌") {
    color: #F44336; /* Red for x */
    font-weight: bold;
}

/* First column styling */
.service-content tbody tr td:first-child {
    font-weight: bold;
}

/* Alternating row colors */
.service-content tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Remove border from table and add to container */
.service-content table {
    border: none;
}

/* Make sure the check and x marks are clearly visible */
.service-content td span.icon {
    font-size: 1.4rem;
    display: inline-block;
    margin-right: 10px;
}

/* Ensure the green checkmarks are properly colored */
.service-content td span.icon:contains("✅") {
    color: #4CAF50;
}

/* Ensure the red X marks are properly colored */
.service-content td span.icon:contains("❌") {
    color: #F44336;
}

/* Optional: Make table scrollable on smaller screens */
@media (max-width: 600px) {
    .service-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
