#overview-score-text{
    background-color: #e3e6ed;
}

/* Work Status Styles */
.work-status-container {
    font-family: Arial, sans-serif;
    width: 90%;
    margin: auto;
    text-align: left;
}

.work-status-title,
.work-status-subtitle {
    margin-bottom: 20px;
}

.work-status-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.work-status-item {
    flex: 1;
    margin-right: 10px;
}

.work-status-item:last-child {
    margin-right: 0;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.work-status-progress-bar {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 20px;
    padding: 0 5px;
}

.work-status-progress {
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px 0 0 5px;
    transition: width 0.3s ease;
}

.work-status-progress-text {
    margin-left: 10px;
    font-size: 0.9rem;
}

/* Work Card Styles */
.work-card-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.work-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.work-card-title {
    margin-top: 0;
    font-size: 1.2rem;
}

.work-card-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
}

.work-status-container {
    font-family: Arial, sans-serif;
    width: 99%;
    margin: auto;
    text-align: left;
    margin-bottom: 30px;
}

.work-status-title,
.work-status-subtitle {
    margin-bottom: 20px;
    color: #333;
}

.work-status-label {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.work-status-item {
    margin-bottom: 20px;
}

/* Transcript Table Styles */
.work-status-transcript-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.work-status-transcript-table th,
.work-status-transcript-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.work-status-transcript-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.work-status-transcript-table td {
    background-color: #fff;
}

/* Progress Bar Styles */
.work-status-progress-bar {
    position: relative;
    width: 100%;
    background-color: #e9ecef;
    border-radius: 10px;
    height: 40px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

.work-status-progress {
    height: 100%;
    background: #76e07c;
    width: 0;
    border-radius: 10px 0 0 10px;
    transition: width 0.4s ease;
}

.work-status-progress-text {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}
