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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
}

h1 {
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 600;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.nav a {
    padding: 12px 24px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #000000;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav a:hover, .nav a.active {
    background: #000000;
    color: #ffffff;
}

.fitness-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    line-height: 1.4;
}

.form-group input, 
.form-group select, 
textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #000000;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
textarea:focus {
    outline: none;
    border-color: #000000;
}

.unit-label {
    position: absolute;
    right: 15px;
    top: 45px;
    color: #666666;
    font-weight: 500;
    pointer-events: none;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.checkbox-label:hover {
    border-color: #000000;
    background: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    accent-color: #000000;
    cursor: pointer;
}

.checkbox-label.selected {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.checkmark {
    font-weight: 500;
    font-size: 15px;
}

.user-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #000000;
}

.prompt-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #666666;
}

.prompt-section h3 {
    margin-bottom: 15px;
    color: #000000;
}

#generatedPrompt {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #000000;
}

#submitBtn {
    width: 100%;
    padding: 15px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#submitBtn:hover {
    background: #333333;
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #cccccc;
}

.loading-section {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.result-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
}

.result-header h3 {
    color: #000000;
    margin-bottom: 20px;
}

.result-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-weight: 600;
    color: #666666;
    font-size: 14px;
}

.plan-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.result-card {
    background: #000000;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    max-width: 180px;
    margin: 0 auto;
}

.result-card h4 {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.result-card .value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.result-card .unit {
    font-size: 14px;
    opacity: 0.8;
}

.training-plan-card {
    background: #f8f9fa;
    border: 2px solid #000000;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    grid-column: 1 / -1;
    max-width: 100%;
}

.training-plan-card h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

.training-plan-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.training-plan-text {
    white-space: pre-wrap;
}

.comment-display-card {
    background: #f8f9fa;
    border: 2px solid #000000;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    width: 100%;
}

.comment-display-card h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

.comment-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    white-space: pre-wrap;
}

/* Results page comment styling */
.comment-row {
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 10px;
}

.comment-text {
    font-style: italic;
    color: #666;
    max-width: 300px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Results page explanation styling */
.explanation-row {
    border-top: 1px solid #e8f4f8;
    margin-top: 10px;
    padding-top: 10px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 6px;
}

.explanation-text {
    font-style: italic;
    color: #2c5282;
    max-width: 300px;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

/* Modal comment styling */
.detail-item.comment-item {
    grid-column: 1 / -1;
    border-top: 1px solid #f0f0f0;
    margin-top: 15px;
    padding-top: 15px;
}

.detail-value.comment-value {
    font-style: italic;
    color: #666;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 8px;
    display: block;
}

/* Prompt editing controls */
.prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.prompt-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-edit-prompt, .btn-reset-prompt {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-edit-prompt:hover, .btn-reset-prompt:hover {
    background: #ffffff;
    color: #000000;
}

.btn-edit-prompt.active {
    background: #28a745;
    border-color: #28a745;
}

.btn-edit-prompt.active:hover {
    background: #ffffff;
    color: #28a745;
    border-color: #28a745;
}

.prompt-status {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.prompt-status.edited {
    color: #28a745;
    font-weight: 500;
}

#generatedPrompt.editable {
    border: 2px solid #28a745;
    background: #f8fff8;
}

#generatedPrompt.readonly {
    background: #f8f9fa;
}

.training-day {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.training-day:last-child {
    border-bottom: none;
}

.training-day h5 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exercise {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exercise-name {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.exercise-details {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.exercise-notes {
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.status-success {
    color: #28a745;
    font-weight: bold;
}

.status-error {
    color: #F2994A;
    font-weight: bold;
}

.raw-response {
    margin: 30px 0;
}

.raw-response h4 {
    color: #666666;
    margin-bottom: 10px;
}

.raw-response textarea {
    width: 100%;
    min-width: 600px;
    max-width: 100%;
    resize: horizontal;
}

.feedback-section {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.rating-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.btn-like, .btn-dislike {
    padding: 12px 24px;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
}

.btn-like:hover {
    background: #000000;
    color: #000000;
}

.btn-like.active {
    background: #000000;
    color: #ffffff;
}

.btn-dislike:hover {
    background: #F2994A;
    color: #000000;
    border-color: #F2994A;
}

.btn-dislike.active {
    background: #F2994A;
    color: #ffffff;
    border-color: #F2994A;
}

.comment-section {
    margin-top: 20px;
}

.comment-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.comment-section textarea {
    width: 100%;
    min-width: 500px;
    max-width: 100%;
    resize: horizontal;
    min-height: 80px;
}

.btn-feedback {
    margin-top: 15px;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-feedback:hover {
    background: #333333;
}

/* Results page styles */
.filters-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.filters-section h3 {
    color: #000000;
    margin-bottom: 20px;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.btn-filter, .btn-clear {
    padding: 12px 20px;
    border: 2px solid #000000;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter {
    background: #000000;
    color: #ffffff;
}

.btn-filter:hover {
    background: #333333;
}

.btn-clear {
    background: #ffffff;
    color: #000000;
}

.btn-clear:hover {
    background: #f8f9fa;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.result-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.result-item:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.result-item h4 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 18px;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    color: #666666;
    font-size: 14px;
}

.feedback-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    color: #000000;
    margin: 0;
}

.close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000000;
}

.modal-body {
    padding: 30px;
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-weight: 600;
    color: #666666;
    font-size: 14px;
}

.detail-value {
    font-size: 16px;
    color: #000000;
}

.error-message {
    background: #F2994A;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .result-meta {
        grid-template-columns: 1fr;
    }
    
    .plan-results {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .result-card {
        max-width: none;
        margin: 0;
    }
    
    .raw-response textarea,
    .comment-section textarea {
        min-width: 100%;
    }
    
    .filters {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2em;
    }
}

/* Exercise Code Styling */
.exercise-name {
    font-weight: 600;
}

.exercise-code {
    color: #666;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: normal;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

/* Style exercise text that contains codes in brackets */
.exercise {
    position: relative;
}

.exercise-details {
    display: block;
    margin-top: 4px;
}

/* Training plan exercise styling */
.training-plan .exercise span {
    display: inline-block;
}

/* For exercises that have [code] format, style them */
.exercise:contains('[') .exercise-name,
.exercise-name:contains('[') {
    /* This will be handled by JavaScript parsing */
}

/* Enhanced Exercise Details Styling */
.exercise-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
}

.exercise-header {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s ease;
}

.exercise-header:hover {
    background-color: #f5f5f5;
}

.exercise-container .exercise-name {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
}

.exercise-container .exercise-code {
    font-family: 'Courier New', monospace;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #666;
    margin-left: 0;
}

.toggle-icon {
    font-size: 1.2em;
    color: #007bff;
    cursor: pointer;
}

.exercise-workout-info {
    padding: 8px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exercise-workout-info .exercise-details {
    font-weight: 600;
    color: #495057;
}

.exercise-workout-info .exercise-notes {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9em;
}

.exercise-details-panel {
    border-top: 1px solid #e0e0e0;
    padding: 15px;
    background: #fafafa;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.exercise-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
}

.exercise-gif {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.exercise-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exercise-meta p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.4;
}

.exercise-meta strong {
    color: #333;
    font-weight: 600;
}

.exercise-instructions {
    grid-column: 1 / -1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.exercise-instructions strong {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.exercise-instructions ol {
    margin-left: 20px;
    color: #555;
}

.exercise-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive design for exercise details */
@media (max-width: 768px) {
    .exercise-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .exercise-gif {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .exercise-meta {
        text-align: left;
    }
}

/* Model Selection Styling */
.model-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.model-section h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
}

.model-info {
    margin-top: 8px;
}

.model-info small {
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

/* Style optgroups */
select optgroup {
    font-weight: bold;
    color: #333;
}

select option {
    font-weight: normal;
    padding: 5px;
}

/* Delete button styling for results page */
.result-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.result-content {
    flex: 1;
    cursor: pointer;
}

.result-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

.btn-delete {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    background: transparent;
    color: #dc3545;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}

.btn-delete:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.btn-delete:active {
    transform: translateY(0);
}

/* Latest Plan Page Styles */
.loading-section, .error-section {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 20px 0;
}

.plan-section {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 20px 0;
    overflow: hidden;
}

.plan-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.plan-header h2 {
    margin: 0 0 15px 0;
    color: #000000;
    font-size: 24px;
}

.plan-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.meta-label {
    font-weight: 600;
    color: #666;
}

.nutrition-section, .training-section {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.nutrition-section:last-child, .training-section:last-child {
    border-bottom: none;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.nutrition-card {
    background: #000000;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    max-width: 180px;
    margin: 0 auto;
}

.nutrition-card h4 {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.nutrition-card .value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.nutrition-card .unit {
    font-size: 14px;
    opacity: 0.8;
}

.plan-actions {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    background: #f8f9fa;
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
}

/* Set Type Badge Styles */
.set-type-badge {
    display: inline-block !important;
    padding: 0 !important;
    margin-left: 8px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    text-transform: none !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    background-color: transparent !important;
    border: none !important;
}

.simple-set {
    color: #000000 !important;
}

.drop-set {
    color: #000000 !important;
}

/* Superset Styles */
.superset-group {
    border-left: 4px solid #FF6B35;
    margin-left: 10px;
    padding-left: 15px;
    margin-bottom: 20px;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.05), transparent);
    border-radius: 4px;
}

.superset-label {
    font-weight: 700;
    color: #FF6B35;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.superset-indicator {
    font-size: 16px;
    margin-right: 6px;
}

.exercise-container.in-superset {
    margin-left: 0;
    margin-bottom: 12px;
}

.exercise-container.in-superset:last-child {
    margin-bottom: 0;
}
