/* Solutions Page Styles */
.solutions-container {
    min-height: calc(100vh - 60px);
    background-color: #0f0f0f;
    color: #e0e0e0;
}

.solutions-header {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solutions-title {
    font-size: 28px;
    font-weight: bold;
    color: #4a9eff;
    margin: 0;
}

.solutions-main {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1px;
    background-color: #333;
    height: calc(100vh - 120px);
}

.solutions-list-panel {
    background-color: #1e1e1e;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.solutions-filter {
    padding: 15px;
    background-color: #2d2d2d;
    border-bottom: 1px solid #3d3d3d;
    display: flex;
    gap: 10px;
}

.solutions-list {
    flex: 1;
    overflow-y: auto;
}

.solution-item {
    padding: 15px;
    border-bottom: 1px solid #2d2d2d;
    cursor: pointer;
    transition: background-color 0.2s;
}

.solution-item:hover {
    background-color: #2d2d2d;
}

.solution-item.active {
    background-color: #2d2d2d;
    border-left: 3px solid #4a9eff;
}

.solution-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.solution-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #e0e0e0;
    flex: 1;
}

.solution-language-badge {
    padding: 3px 8px;
    background-color: #3d3d3d;
    color: #4a9eff;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 600;
}

.verified-badge-small {
    color: #00b894;
    font-size: 14px;
    margin-right: 5px;
}

.solution-item-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    gap: 15px;
}

.solution-votes {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.solution-detail-panel {
    background-color: #1e1e1e;
    overflow-y: auto;
    padding: 30px;
}

.solution-detail {
    max-width: 900px;
}

.no-selection {
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

.no-selection-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.solution-detail-content {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.solution-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #3d3d3d;
}

.solution-detail-title {
    font-size: 24px;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verified-badge-large {
    background-color: #00b894;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.solution-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.detail-language {
    background-color: #3d3d3d;
    padding: 4px 10px;
    border-radius: 4px;
    color: #4a9eff;
    font-weight: 600;
}

.complexity-badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.complexity-badge {
    background-color: #2d2d2d;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #e0e0e0;
}

.solution-explanation {
    margin-bottom: 30px;
}

.solution-explanation h3 {
    font-size: 18px;
    color: #4a9eff;
    margin-bottom: 15px;
}

.solution-explanation p {
    line-height: 1.8;
    color: #b0b0b0;
}

.solution-code-section {
    margin-bottom: 30px;
}

.solution-code-section h3 {
    font-size: 18px;
    color: #4a9eff;
    margin-bottom: 15px;
}

.solution-code-section pre {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #3d3d3d;
    overflow-x: auto;
}

.solution-code-section code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
}

.solution-actions {
    display: flex;
    gap: 10px;
}

.vote-btn {
    padding: 10px 20px;
    background-color: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.vote-btn:hover {
    background-color: #3d3d3d;
    border-color: #4a9eff;
}

.floating-add-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #4a9eff 0%, #7b68ee 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
}

.floating-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 158, 255, 0.6);
}

.btn-icon {
    font-size: 20px;
}

/* Interview Experiences Styles */
.interview-experiences-container {
    min-height: calc(100vh - 60px);
    background-color: #0f0f0f;
    color: #e0e0e0;
}

.interview-header {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.interview-title {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #4a9eff 0%, #7b68ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.interview-subtitle {
    font-size: 16px;
    color: #888;
}

.add-experience-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
}

.interview-filters {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.companies-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.company-card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #3d3d3d;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.company-card:hover {
    transform: translateY(-2px);
    border-color: #4a9eff;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.2);
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.company-count {
    font-size: 14px;
    color: #888;
}

.experiences-section {
    max-width: 1400px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

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

.experience-card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #3d3d3d;
    cursor: pointer;
    transition: all 0.2s;
}

.experience-card:hover {
    transform: translateY(-2px);
    border-color: #4a9eff;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.2);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.experience-company {
    font-size: 20px;
    font-weight: bold;
    color: #4a9eff;
}

.difficulty-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.difficulty-easy {
    background-color: rgba(0, 184, 148, 0.2);
    color: #00b894;
}

.difficulty-medium {
    background-color: rgba(253, 203, 110, 0.2);
    color: #fdcb6e;
}

.difficulty-hard {
    background-color: rgba(214, 48, 49, 0.2);
    color: #d63031;
}

.experience-role {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.experience-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.exp-level-badge {
    padding: 4px 10px;
    background-color: #2d2d2d;
    border-radius: 4px;
    font-size: 12px;
    color: #888;
}

.exp-date {
    padding: 4px 10px;
    background-color: #2d2d2d;
    border-radius: 4px;
    font-size: 12px;
    color: #888;
}

.offer-badge {
    padding: 4px 10px;
    background-color: rgba(0, 184, 148, 0.2);
    color: #00b894;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.experience-rounds {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid #2d2d2d;
}

.exp-author {
    color: #888;
}

.exp-helpful {
    color: #4a9eff;
}

.exp-date-posted {
    color: #666;
}

/* Experience Detail Modal */
.exp-detail-section {
    margin-bottom: 30px;
}

.exp-detail-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.exp-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.rounds-list {
    padding-left: 25px;
    color: #b0b0b0;
    line-height: 1.8;
}

.rounds-list li {
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.exp-detail-text {
    line-height: 1.8;
    color: #b0b0b0;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.exp-detail-helpful {
    text-align: center;
    padding: 20px;
    background-color: #2d2d2d;
    border-radius: 8px;
}

.helpful-count {
    font-size: 16px;
    color: #4a9eff;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s;
}

.modal-content,
.modal-content-large {
    background-color: #1e1e1e;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid #3d3d3d;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.modal-header h2 {
    font-size: 24px;
    color: #4a9eff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #e0e0e0;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #3d3d3d;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

/* Red label for required fields with errors */
label.required-label,
.form-group label.required-label,
.modal-body label.required-label {
    color: #ff6b6b !important;
    font-weight: 600 !important;
}

.form-input {
    width: 100%;
    padding: 12px;
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #4a9eff;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 14px;
    outline: none;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
    transition: border-color 0.2s;
}

.form-textarea:focus {
    border-color: #4a9eff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.round-input {
    margin-bottom: 10px;
}

#rounds-container {
    margin-bottom: 10px;
}

/* Button Styles */
.btn-small {
    padding: 8px 16px;
    background-color: #4a9eff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-small:hover {
    background-color: #3a8eef;
}

.btn-secondary {
    padding: 10px 24px;
    background-color: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #3d3d3d;
}

/* Loading and Empty States */
.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

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

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

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.empty-text {
    font-size: 20px;
    color: #888;
    margin-bottom: 10px;
}

.empty-subtext {
    font-size: 14px;
    color: #666;
}

.error-state {
    text-align: center;
    padding: 60px 20px;
    color: #d63031;
}

.retry-btn {
    padding: 10px 24px;
    background-color: #4a9eff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

/* Solutions Preview in Problem Page */
.solutions-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#solutions-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-preview-item {
    padding: 15px;
    background-color: #2d2d2d;
    border-radius: 8px;
    border: 1px solid #3d3d3d;
    cursor: pointer;
    transition: all 0.2s;
}

.solution-preview-item:hover {
    border-color: #4a9eff;
    transform: translateX(5px);
}

.solution-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.solution-preview-title {
    flex: 1;
    font-weight: 600;
    color: #e0e0e0;
}

.solution-language-tag {
    padding: 4px 8px;
    background-color: #3d3d3d;
    color: #4a9eff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.solution-preview-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    gap: 15px;
}

.no-solutions {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.no-solutions p {
    margin-bottom: 10px;
}

.loading-indicator {
    text-align: center;
    padding: 40px;
    color: #888;
}

/* Responsive Design */

/* Tablets and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .solutions-main {
        grid-template-columns: 300px 1fr;
    }
    
    .experiences-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets and Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .solutions-main {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .solutions-list-panel {
        max-height: 300px;
        border-right: none;
        border-bottom: 1px solid #3d3d3d;
    }
    
    .solutions-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .solutions-title {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .experiences-list {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .experience-card {
        padding: 15px;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .exp-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .exp-meta span {
        font-size: 12px;
    }
    
    .experience-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 25px 20px;
        margin: 10px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-submit,
    .btn-cancel {
        width: 100%;
    }
    
    .filter-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .interview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 15px;
    }
    
    .interview-title {
        font-size: 28px;
    }
    
    .interview-subtitle {
        font-size: 14px;
    }
    
    .add-experience-btn {
        width: 100%;
        justify-content: center;
    }
    
    .interview-filters {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .interview-filters .search-input,
    .interview-filters .filter-select {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }
    
    .interview-filters .result-count {
        width: 100%;
        text-align: center;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .solutions-header {
        padding: 15px;
    }
    
    .solutions-title {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .company-card {
        padding: 12px;
    }
    
    .company-name {
        font-size: 13px;
    }
    
    .company-count {
        font-size: 11px;
    }
    
    .experience-card {
        padding: 12px;
    }
    
    .experience-header h3 {
        font-size: 15px;
    }
    
    .exp-company {
        font-size: 13px;
    }
    
    .experience-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .exp-meta span {
        font-size: 11px;
    }
    
    .experience-content {
        font-size: 13px;
    }
    
    .experience-actions button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-header {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 0;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-input,
    .form-textarea {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .toast-notification {
        max-width: 90%;
        right: 5%;
        font-size: 13px;
        padding: 12px 18px;
    }
    
    .filter-section {
        padding: 12px;
    }
    
    .filter-group label {
        font-size: 12px;
    }
    
    .filter-group select {
        padding: 8px;
        font-size: 12px;
    }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification.toast-success {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    border-left: 4px solid #00b894;
}

.toast-notification.toast-error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-left: 4px solid #ff4757;
}

/* ========================================
   LIGHT THEME SUPPORT
   ======================================== */

/* Main Containers */
body[data-theme="light"] .solutions-container,
body[data-theme="light"] .interview-experiences-container {
    background-color: #f5f7fa;
    color: #2d3748;
}

/* Headers */
body[data-theme="light"] .solutions-header,
body[data-theme="light"] .interview-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(49, 130, 206, 0.2);
}

body[data-theme="light"] .solutions-title,
body[data-theme="light"] .interview-title {
    background: linear-gradient(135deg, #3182ce 0%, #6b46c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="light"] .interview-subtitle {
    color: #718096;
}

/* List Panels */
body[data-theme="light"] .solutions-list-panel {
    background-color: #ffffff;
}

body[data-theme="light"] .solutions-filter {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}

body[data-theme="light"] .solutions-main {
    background-color: #e2e8f0;
}

/* List Items */
body[data-theme="light"] .solution-item {
    border-bottom: 1px solid #e2e8f0;
}

body[data-theme="light"] .solution-item:hover,
body[data-theme="light"] .solution-item.active {
    background-color: #f7fafc;
}

body[data-theme="light"] .solution-item.active {
    border-left: 3px solid #3182ce;
}

body[data-theme="light"] .solution-item-title {
    color: #2d3748;
}

body[data-theme="light"] .solution-language-badge,
body[data-theme="light"] .solution-language-tag {
    background-color: rgba(49, 130, 206, 0.1);
    color: #3182ce;
}

body[data-theme="light"] .solution-item-meta,
body[data-theme="light"] .solution-votes {
    color: #718096;
}

/* Detail Panel */
body[data-theme="light"] .solution-detail-panel {
    background-color: #ffffff;
}

body[data-theme="light"] .no-selection {
    color: #a0aec0;
}

body[data-theme="light"] .solution-detail-header {
    border-bottom: 1px solid #e2e8f0;
}

body[data-theme="light"] .solution-detail-title {
    color: #2d3748;
}

body[data-theme="light"] .solution-detail-meta {
    color: #718096;
}

body[data-theme="light"] .detail-language {
    background-color: rgba(49, 130, 206, 0.1);
    color: #3182ce;
}

body[data-theme="light"] .complexity-badge {
    background-color: #f7fafc;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .solution-explanation h3,
body[data-theme="light"] .solution-code-section h3 {
    color: #3182ce;
}

body[data-theme="light"] .solution-explanation p {
    color: #4a5568;
}

body[data-theme="light"] .solution-code-section pre {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .solution-code-section code {
    color: #2d3748;
}

/* Buttons and Actions */
body[data-theme="light"] .vote-btn {
    background-color: #ffffff;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .vote-btn:hover {
    background-color: #f7fafc;
    border-color: #3182ce;
}

body[data-theme="light"] .btn-secondary {
    background-color: #ffffff;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .btn-secondary:hover {
    background-color: #f7fafc;
}

/* Companies Section */
body[data-theme="light"] .section-title {
    color: #2d3748;
}

body[data-theme="light"] .companies-grid,
body[data-theme="light"] .company-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .company-card:hover {
    border-color: #3182ce;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.15);
}

body[data-theme="light"] .company-name {
    color: #2d3748;
}

body[data-theme="light"] .company-count {
    color: #718096;
}

/* Experience Cards */
body[data-theme="light"] .experience-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .experience-card:hover {
    border-color: #3182ce;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.15);
}

body[data-theme="light"] .experience-company {
    color: #3182ce;
}

body[data-theme="light"] .experience-role {
    color: #2d3748;
}

body[data-theme="light"] .exp-level-badge,
body[data-theme="light"] .exp-date {
    background-color: #f7fafc;
    color: #718096;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .experience-rounds {
    color: #4a5568;
}

body[data-theme="light"] .experience-footer {
    border-top: 1px solid #e2e8f0;
}

body[data-theme="light"] .exp-author {
    color: #718096;
}

body[data-theme="light"] .exp-helpful {
    color: #3182ce;
}

body[data-theme="light"] .exp-date-posted {
    color: #a0aec0;
}

/* Modal */
body[data-theme="light"] .modal {
    background-color: rgba(0, 0, 0, 0.4);
}

body[data-theme="light"] .modal-content,
body[data-theme="light"] .modal-content-large {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .modal-header {
    border-bottom: 1px solid #e2e8f0;
}

body[data-theme="light"] .modal-header h2 {
    color: #3182ce;
}

body[data-theme="light"] .modal-close {
    color: #718096;
}

body[data-theme="light"] .modal-close:hover {
    color: #2d3748;
}

body[data-theme="light"] .modal-footer {
    border-top: 1px solid #e2e8f0;
}

/* Forms */
body[data-theme="light"] .form-group label {
    color: #2d3748;
}

body[data-theme="light"] .form-input,
body[data-theme="light"] .form-textarea {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2d3748;
}

body[data-theme="light"] .form-input:focus,
body[data-theme="light"] .form-textarea:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Detail Sections */
body[data-theme="light"] .exp-detail-meta {
    color: #718096;
}

body[data-theme="light"] .rounds-list {
    color: #4a5568;
}

body[data-theme="light"] .exp-detail-text {
    color: #4a5568;
}

body[data-theme="light"] .exp-detail-helpful {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .helpful-count {
    color: #3182ce;
}

/* Loading and Empty States */
body[data-theme="light"] .loading-state,
body[data-theme="light"] .empty-state {
    color: #718096;
}

body[data-theme="light"] .spinner {
    border: 3px solid #e2e8f0;
    border-top: 3px solid #3182ce;
}

body[data-theme="light"] .empty-text {
    color: #718096;
}

body[data-theme="light"] .empty-subtext {
    color: #a0aec0;
}

/* Solution Preview */
body[data-theme="light"] .solution-preview-item {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
}

body[data-theme="light"] .solution-preview-item:hover {
    border-color: #3182ce;
}

body[data-theme="light"] .solution-preview-title {
    color: #2d3748;
}

body[data-theme="light"] .solution-preview-meta {
    color: #718096;
}

body[data-theme="light"] .no-solutions {
    color: #718096;
}

body[data-theme="light"] .loading-indicator {
    color: #718096;
}

