/* 🎯 Detaylı Çanta Hesaplayıcısı CSS v2.1 - Güçlendirilmiş Versiyon */

/* Google Fonts - Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

.detailed-bag-calculator-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.detailed-bag-calculator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.calculator-header h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.detailed-calculator-form {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(145deg, #f8f9ff, #ffffff);
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, transparent);
    border-radius: 15px 15px 0 0;
}

.form-section:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-3px);
}

.form-section h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.form-section h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

#detailed-bag-calculator .model-selection {
    background: linear-gradient(145deg, #e3f2fd, #f8f9ff) !important;
    border-left-color: #2196f3 !important;
}

/* GÜÇLENDİRİLMİŞ FORM KURALLARI */
#detailed-bag-calculator .form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.5; /* Dikey hizalama için */
    height: auto; /* Tema stillerini sıfırlamak için */
}

#detailed-bag-calculator select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px; /* Ok ikonu için boşluk bırakır */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    cursor: pointer;
}

#detailed-bag-calculator .model-select.form-control {
    font-weight: 600 !important;
    color: #1976d2 !important;
    background-color: white !important;
    border: 2px solid #2196f3 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231976d2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
/* GÜÇLENDİRME SONU */

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.form-row.mobile-stack {
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.form-group label.has-tooltip {
    cursor: help;
    border-bottom: 1px dotted #667eea;
}

#detailed-bag-calculator .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    background: #fefeff;
}

#detailed-bag-calculator .form-control.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    animation: shake 0.5s ease-in-out;
}

#detailed-bag-calculator .form-control.valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.printing-section {
    background: linear-gradient(145deg, #fff3e0, #f8f9ff) !important;
    border-left-color: #ff9800 !important;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e1e5e9;
}

.calculate-btn, .reset-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.calculate-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.calculate-btn:hover::before {
    left: 100%;
}

.reset-btn {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5);
}

.btn-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}
/* LOADING ANIMATIONS */
.detailed-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.loading-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.spinner-detailed {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.spinner-detailed::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h4 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin: 0 0 20px 0;
}

.progress-container {
    margin: 20px 0;
}

.progress-bar-detailed {
    width: 100%;
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill-detailed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-weight: 600;
    color: #2c5aa0;
    margin-top: 8px;
    display: block;
}

.loading-step {
    color: #666;
    font-style: italic;
    margin-top: 15px;
    min-height: 20px;
}

/* DETAILED RESULTS */
.detailed-calculation-result {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 3px solid #667eea;
    position: relative;
    overflow: hidden;
}

.detailed-calculation-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.result-appear-animation {
    animation: resultAppear 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes resultAppear {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.result-summary {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e1e5e9;
}

.result-summary h3 {
    color: #2c5aa0;
    font-size: 2rem;
    margin: 0 0 25px 0;
    text-align: center;
    font-weight: 300;
    position: relative;
}

.result-summary h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.summary-grid.mobile-grid {
    grid-template-columns: 1fr;
}

.summary-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(145deg, #f8f9ff, #ffffff);
    border-radius: 15px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.summary-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.summary-item.unit-price::before {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.summary-item.total-cost::before {
    background: linear-gradient(45deg, #f39c12, #d68910);
}

.summary-item.total-weight::before {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.summary-item.packaging::before {
    background: linear-gradient(45deg, #8e44ad, #7d3c98);
}

.summary-item label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.price-large, .weight-large, .info-large {
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: block;
}

.summary-item.unit-price .price-large {
    color: #e74c3c;
}

/* DETAILED BREAKDOWN */
.detailed-breakdown h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    text-align: center;
    font-weight: 600;
}

.breakdown-section {
    margin-bottom: 35px;
    background: #fafbfc;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}

.breakdown-section:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.breakdown-section h4 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
    padding: 20px 25px;
    font-weight: 600;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
}

.breakdown-section h4::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.breakdown-content {
    padding: 20px 25px;
}

.detail-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8ecef;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.03), transparent);
    border-radius: 8px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.mobile-stack {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
}

.detail-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.detail-value {
    font-weight: bold;
    color: #2c5aa0;
    font-size: 1rem;
    text-align: right;
}

.detail-row.mobile-stack .detail-value {
    text-align: center;
    font-size: 1.1rem;
}

.detail-formula {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 5px;
    border-left: 3px solid #667eea;
}

/* SPECIAL BREAKDOWN SECTIONS */
.final-summary {
    background: linear-gradient(145deg, #f8f9ff, #e3f2fd) !important;
    border: 2px solid #667eea !important;
}

.final-summary h4 {
    background: linear-gradient(45deg, #2c5aa0, #667eea) !important;
}

.detail-row.subtotal {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border-bottom: none !important;
}

.detail-row.tax {
    background: rgba(230, 126, 34, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    border-bottom: none !important;
}

.detail-row.total {
    background: linear-gradient(145deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border-bottom: none !important;
    border: 2px solid #e74c3c;
}

.total-price {
    font-size: 1.4rem !important;
    color: #e74c3c !important;
    font-weight: 900 !important;
}

/* EXPORT ACTIONS */
.export-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e1e5e9;
    flex-wrap: wrap;
}

.export-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.export-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.export-btn:hover::before {
    left: 100%;
}

.excel-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.excel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.pdf-btn {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.pdf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.json-btn {
    background: linear-gradient(45deg, #6f42c1, #5a32a3);
    color: white;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.json-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.4);
}

/* ERROR MODAL */
.error-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.error-modal {
    background: white;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: errorModalAppear 0.3s ease-out;
}

@keyframes errorModalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.error-header {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.error-icon {
    font-size: 1.5rem;
}

.error-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.error-content {
    padding: 25px;
}

.error-content p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.error-actions {
    padding: 20px 25px;
    text-align: center;
    border-top: 1px solid #e1e5e9;
}

.error-close-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 15px rgba(102, 126, 234, 0.4);
}

/* CUSTOM TOOLTIP */
.custom-tooltip {
    position: absolute;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    max-width: 250px;
    z-index: 1000;
    display: none;
    line-height: 1.4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0,0,0,0.9) transparent transparent transparent;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .detailed-bag-calculator-container {
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .calculator-header h2 {
        font-size: 2.2rem;
    }
    
    .detailed-calculator-form {
        padding: 25px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .detail-value {
        text-align: center !important;
        font-size: 1.1rem;
    }
    
    .export-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .export-btn {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .calculator-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .detailed-calculator-form {
        padding: 20px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .price-large, .weight-large, .info-large {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .calculate-btn, .reset-btn {
        width: 100%;
        justify-content: center;
    }
    
    .breakdown-section h4 {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    
    .breakdown-content {
        padding: 15px 20px;
    }
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
    .detailed-calculator-form {
        background: rgba(30, 30, 30, 0.95);
        color: #e0e0e0;
    }
    
    .form-section {
        background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
        border-left-color: #667eea;
    }
    
    #detailed-bag-calculator .form-control {
        background: #3d3d3d;
        border-color: #4d4d4d;
        color: #e0e0e0;
    }
    
    #detailed-bag-calculator .form-control:focus {
        background: #4d4d4d;
        border-color: #667eea;
    }
    
    .detailed-calculation-result {
        background: #2d2d2d;
        color: #e0e0e0;
    }
    
    .summary-item, .breakdown-section {
        background: linear-gradient(145deg, #3d3d3d, #2d2d2d);
        border-color: #4d4d4d;
    }
    
    .breakdown-content {
        background: #2d2d2d;
    }
    
    .detail-formula {
        background: #3d3d3d;
        color: #b0b0b0;
    }
}

/* PRINT STYLES */
@media print {
    .detailed-bag-calculator-container {
        background: white !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .detailed-calculator-form, .export-actions {
        display: none !important;
    }
    
    .detailed-calculation-result {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        border-radius: 0 !important;
        padding: 20px !important;
    }
    
    .calculator-header h2 {
        color: #333 !important;
        text-shadow: none !important;
    }
    
    .breakdown-section {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}