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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Wizard dizainas */
.wizard-progress {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e1e5e9;
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.5s ease;
    overflow: hidden;
    border: none;
    outline: none;
    box-shadow: none;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s ease;
    width: calc(16.66% * var(--progress-step, 1));
    border: none;
    outline: none;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 4px solid #e1e5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #999;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    border-color: #667eea;
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.progress-step.completed .step-number i {
    font-size: 1.2rem;
    color: white;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.progress-step.active .step-label {
    color: #667eea;
}

.wizard-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
    min-height: 500px;
}

.wizard-step {
    display: none;
    animation: fadeOut 0.3s ease;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

.step-content {
    margin-bottom: 40px;
}

.step-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.step-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Platformų kortelės */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.platform-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px solid #e1e5e9;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.platform-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.platform-card i {
    font-size: 3.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.platform-card.selected i {
    color: white;
    transform: scale(1.2);
}

.platform-card span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.platform-card.selected span {
    color: white;
}

/* Option kortelės (turiniui ir strategijai) */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.option-card {
    background: #f8f9fa;
    border: 3px solid #e1e5e9;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.option-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.option-card i {
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.option-card.selected i {
    color: white;
    transform: scale(1.15);
}

.option-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.option-card.selected span {
    color: white;
}

/* Step actions (mygtukai) */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e1e5e9;
}

.btn-back,
.btn-next,
.btn-calculate {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-back {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
}

.btn-back:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateX(-3px);
}

.btn-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-left: auto;
}

.btn-next:hover:not(:disabled) {
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-calculate {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    margin-left: auto;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

/* Nuotraukos įkėlimo zona */
.image-upload-area {
    position: relative;
    border: 3px dashed #e1e5e9;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.image-upload-area:hover {
    border-color: #667eea;
    background: #f0f2ff;
}

.image-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    pointer-events: none;
}

.upload-placeholder i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 15px;
}

.upload-placeholder p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.upload-hint {
    font-size: 0.9rem;
    color: #999;
}

.image-preview {
    display: none;
    margin-top: 20px;
}

.image-preview.has-image {
    display: block;
}

.image-preview img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.preview-wrapper {
    position: relative;
    display: inline-block;
}

.remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: #e74c3c;
}

.remove-image:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.char-counter {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.char-counter.warning {
    color: #ff6b6b;
}

.char-counter.danger {
    color: #e74c3c;
    font-weight: bold;
}

.image-preview {
    margin-top: 10px;
    text-align: center;
}

.image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.calculate-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

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

.results-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.results-container h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.score-display {
    margin-bottom: 40px;
}

.score-circle {
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    opacity: 0.3;
}

.score-label {
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 5px;
}

.score-breakdown {
    text-align: left;
    margin-bottom: 30px;
}

.score-breakdown h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    font-weight: 500;
    color: #555;
}

.breakdown-score {
    font-weight: bold;
    color: #667eea;
}

.recommendations {
    text-align: left;
}

.recommendations h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    padding: 10px 0 !important;
    padding-left: 15px !important;
    margin-bottom: 10px !important;
    background: #f8f9fa !important;
    border-left: 4px solid #667eea !important;
    border-radius: 0 8px 8px 0 !important;
    list-style: none !important;
}

/* Scenarijų veiksmų mygtukai */
.scenario-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.scenario-actions .btn-primary,
.scenario-actions .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    min-width: 180px;
    justify-content: center;
}

.scenario-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.scenario-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a3d92 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.scenario-actions .btn-secondary {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
}

.scenario-actions .btn-secondary:hover {
    background: #f0f2ff !important;
    color: #667eea !important;
    border-color: #667eea !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.score-excellent {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.score-good {
    background: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
}

.score-average {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.score-poor {
    background: linear-gradient(135deg, #FF5722 0%, #E91E63 100%);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .container {
        padding: 15px 10px;
        max-width: 100%;
    }
    
    header {
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .form-container,
    .results-container {
        padding: 25px 15px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .score-circle {
        width: 140px;
        height: 140px;
        font-size: 2.2rem;
    }

    .score-label {
        font-size: 1rem;
    }

    /* Wizard responsive */
    .wizard-progress {
        padding: 15px 10px;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .progress-steps {
        gap: 5px;
    }

    .step-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        border-width: 3px;
    }

    .wizard-container {
        padding: 25px 15px;
        border-radius: 15px;
        min-height: auto;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .platform-card {
        padding: 18px 12px;
        border-radius: 12px;
    }

    .platform-card i {
        font-size: 2.2rem;
    }

    .platform-card span {
        font-size: 1rem;
    }

    .option-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .option-card {
        padding: 18px 12px;
        border-radius: 12px;
    }

    .option-card i {
        font-size: 2rem;
    }

    .option-card span {
        font-size: 0.9rem;
    }

    .step-content {
        margin-bottom: 30px;
    }

    .step-content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .step-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
        padding-top: 20px;
    }

    .btn-back,
    .btn-next,
    .btn-calculate {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
        margin: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .image-upload-area {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .upload-placeholder i {
        font-size: 3rem;
    }

    .upload-placeholder p {
        font-size: 1rem;
    }

    .image-preview img {
        max-width: 100%;
        max-height: 250px;
    }

    .score-breakdown,
    .recommendations {
        margin-bottom: 25px;
    }

    .breakdown-item {
        padding: 10px 0;
        font-size: 0.95rem;
    }

    .recommendations li {
        padding: 12px 0 12px 12px !important;
        font-size: 0.95rem;
    }

    .comparison-container {
        padding: 25px 15px;
        border-radius: 15px;
        margin-top: 20px;
    }

    .comparison-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-bottom: 15px;
    }

    .comparison-header h2 {
        font-size: 1.5rem;
    }

    .scenario-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .scenario-item {
        padding: 12px;
    }

    .scenario-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px 8px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    header p {
        font-size: 0.9rem;
    }

    .wizard-progress {
        padding: 12px 8px;
    }

    .step-label {
        font-size: 0.6rem;
        display: none; /* Hide labels on very small screens */
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .wizard-container {
        padding: 20px 12px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .option-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-content h2 {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .form-container,
    .results-container,
    .comparison-container {
        padding: 20px 12px;
    }

    .score-circle {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }

    .image-upload-area {
        padding: 25px 15px;
    }

    .upload-placeholder i {
        font-size: 2.5rem;
    }

    .btn-back,
    .btn-next,
    .btn-calculate {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Scenarijų palyginimo stiliai */
.scenario-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Perrašyti scenario-actions mygtukų stilius */
.scenario-actions .btn-secondary,
.scenario-actions .btn-secondary:hover {
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
}

.scenario-actions .btn-secondary:hover {
    background: #f0f2ff !important;
}

.comparison-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
    position: relative;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e1e5e9;
}

.comparison-header h2 {
    color: #333;
    margin: 0;
}

.btn-close {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-close:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.comparison-controls {
    margin-bottom: 30px;
}

.scenario-selector label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.scenario-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.scenario-item {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.scenario-item:hover {
    border-color: #667eea;
    background: #f0f2ff;
}

.scenario-item.selected {
    border-color: #667eea;
    background: #e8f0ff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.scenario-item input[type="checkbox"] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.scenario-info h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1rem;
}

.scenario-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.scenario-detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.scenario-score {
    position: absolute;
    top: 15px;
    right: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.comparison-results {
    margin-top: 30px;
}

.comparison-chart {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.score-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.score-excellent {
    background: #4CAF50;
    color: white;
}

.score-good {
    background: #8BC34A;
    color: white;
}

.score-average {
    background: #FFC107;
    color: #333;
}

.score-poor {
    background: #FF5722;
    color: white;
}

.comparison-insights {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #667eea;
}

.comparison-insights h3 {
    color: #333;
    margin-bottom: 15px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.insight-icon {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 2px;
}

.insight-text {
    flex: 1;
}

.insight-text strong {
    color: #333;
}

.empty-scenarios {
    text-align: center;
    padding: 40px;
    color: #666;
}

.empty-scenarios i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-scenarios h3 {
    color: #333;
    margin-bottom: 10px;
}

.empty-scenarios p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .scenario-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Mygtukai vienodo ilgio mobile */
    .scenario-actions .btn-primary,
    .scenario-actions .btn-secondary {
        width: 100%;
        min-width: 0;
    }
    
    .scenario-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .comparison-container {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .comparison-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-bottom: 15px;
    }
    
    .comparison-header h2 {
        font-size: 1.4rem;
    }
    
    .scenario-details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table table {
        font-size: 0.9rem;
        min-width: 600px;
    }
    
    .comparison-chart {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-chart canvas {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .comparison-container {
        padding: 15px 12px;
    }
    
    .comparison-header h2 {
        font-size: 1.2rem;
    }
    
    .comparison-table table {
        font-size: 0.85rem;
        min-width: 500px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
    }
}

/* Gemini analizės stiliai */
.gemini-analysis {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #e1e5e9;
}

.gemini-analysis h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.analysis-item {
    margin-bottom: 15px;
}

.analysis-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.analysis-value {
    float: right;
    font-weight: 700;
    color: #667eea;
}

.gemini-progress-bar {
    width: 100%;
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
    position: relative;
}

.gemini-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.analysis-reasoning {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.analysis-reasoning strong {
    color: #667eea;
    display: block;
    margin-bottom: 8px;
}

.analysis-reasoning p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
