.performance-status {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.module {
    padding: 20px;
    border-radius: 5px;
    background-color: #f1f1f1;
    position: relative;
}
.module-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: #888;
    white-space: nowrap;
}
.module-name {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
}
.module-statuses {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.module-status {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.module-status.completed {
    background-color: #c8e6c9;
    color: #1b5e20;
}
.module-status.incomplete {
    background-color: #ffcdd2;
    color: #b71c1c;
}
.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c0e3e3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}
.download-button:hover {
    background-color: #a0bebe;
}
.practice-units-title {
    margin-top: 40px;
}
.integrative-units-accordion {
    margin-top: 20px;
}
.integrative-units-accordion h5 {
    background-color: #f0f0f0;
    padding: 10px;
    margin: 0;
    cursor: pointer;
}
.integrative-units-accordion div {
    padding: 10px;
    border: 1px solid #ddd;
}
.units-container {
    margin-top: 20px;
}
.units-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.units-grid h4{
    font-size: 2.5rem;
}
.unit-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex: 1;
}

.unit-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
}
.unit-box p {
    margin-bottom: 15px;
    color: #666;
}
.download-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.download-button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #c0e3e3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.download-button:hover {
    background-color: #a0bebe;
}
.general-downloads {
    margin-bottom: 20px;
}
.general-downloads .download-button {
    margin-right: 10px;
    margin-bottom: 10px;
}

.ui-tabs-tab{
    background: #c0e3e3 !important;
    border: none !important;
}

.ui-tabs .ui-tabs-nav li {
    white-space: unset !important;
}
