/* Base styles */
#pakkumised-calc {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f8f9fa;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Container layout */
.calc-container {
    display: flex;
    gap: 0;
    align-items: flex-start;
    background: #fff;
}

.calc-main {
    flex: 1;
    min-width: 0;
    padding: 40px;
    background: #fff;
}

.calc-main-title {
    margin: 0 0 30px 0;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-main-title .dashicons {
    color: #660018;
    font-size: 32px;
    width: 32px;
    height: 32px;
}

/* Service groups */
.service-group {
    margin-bottom: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e9ecef;
}

.group-title {
    margin: 0 0 20px 0;
    color: #495057;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.group-title .dashicons {
    color: #660018;
}

.group-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Service items */
.service-item {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover,
.service-item.hover {
    border-color: #660018;
    box-shadow: 0 4px 12px rgba(102, 0, 24, 0.1);
    transform: translateY(-2px);
}

.service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    flex: 1;
}

.service-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #660018;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.service-emoji {
    font-size: 24px;
}

.calc-price {
    font-size: 18px;
    font-weight: 600;
    color: #660018;
    white-space: nowrap;
}

.hour-count {
    width: 60px;
    padding: 6px 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

/* Info button */
.info-button {
    background: #e9ecef;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #495057;
    flex-shrink: 0;
}

.info-button:hover {
    background: #660018;
    color: #fff;
    transform: scale(1.1);
}

.info-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Suboptions */
.suboptions {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.suboption-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.suboption-label:hover {
    background: #e9ecef;
}

.suboption-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.suboption-price {
    font-weight: 600;
    color: #660018;
}

/* Multilang section */
.multilang-item {
    background: #fef5e7 !important;
    border-color: #f39c12 !important;
}

.service-header {
    margin-bottom: 20px;
}

.service-title {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.ml-option {
    margin-bottom: 15px;
}

.styled-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.styled-checkbox:hover {
    border-color: #660018;
}

.checkbox-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.price-tag {
    background: #660018;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ml-or-separator {
    text-align: center;
    margin: 20px 0;
    color: #666;
    font-weight: bold;
    position: relative;
}

.ml-or-separator:before,
.ml-or-separator:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.ml-or-separator:before {
    left: 0;
}

.ml-or-separator:after {
    right: 0;
}

.ml-languages.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.ml-subtitle {
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
}

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

.ml-lang-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.ml-lang-item:hover {
    border-color: #660018;
}

.lang-checkbox {
    display: block;
    cursor: pointer;
}

.lang-checkbox input {
    display: none;
}

.lang-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    transition: all 0.2s;
}

.lang-checkbox input:checked + .lang-box {
    background: #660018;
    color: #fff;
}

.lang-flag {
    font-size: 24px;
}

.lang-name {
    font-weight: 500;
    flex: 1;
}

.lang-price {
    font-size: 14px;
    opacity: 0.8;
}

.ml-trans-options {
    background: #f8f9fa;
    padding: 15px;
    display: none;
}

.trans-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin: 0 0 10px 0;
}

.trans-option {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.trans-option input {
    display: none;
}

.trans-text {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.trans-option input:checked + .trans-text {
    border-color: #660018;
    background: #fef5f5;
}

.trans-text .dashicons {
    color: #660018;
}

.trans-price {
    margin-left: auto;
    font-weight: 600;
    color: #660018;
    font-size: 14px;
}

/* Dividers */
.calc-divider {
    height: 1px;
    background: #e9ecef;
    margin: 30px 0;
}

/* Sections */
.calc-payparts-section,
.calc-contact-section {
    margin: 30px 0;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title .dashicons {
    color: #660018;
}

/* Payment method section */
.payment-method-section {
    margin-bottom: 25px;
}

.payment-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-method-option {
    position: relative;
    cursor: pointer;
}

.payment-method-option input {
    position: absolute;
    opacity: 0;
}

.payment-method-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.payment-method-option input:checked + .payment-method-box {
    border-color: #660018;
    background: #fef5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 0, 24, 0.1);
}

.payment-method-box .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #660018;
    margin-bottom: 8px;
}

.method-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.method-discount {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

.payment-method-option input:checked + .payment-method-box .method-discount {
    color: #660018;
}

/* Payment schedule */
.payment-schedule-section {
    margin-bottom: 25px;
}

.payment-schedule-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.schedule-option {
    cursor: pointer;
}

.schedule-option input {
    position: absolute;
    opacity: 0;
}

.schedule-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s;
}

.schedule-option input:checked + .schedule-box {
    border-color: #660018;
    background: #fef5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 0, 24, 0.1);
}

.schedule-box .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #660018;
    flex-shrink: 0;
}

.schedule-text strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 4px;
}

.schedule-text small {
    color: #6c757d;
    font-size: 13px;
}

#extended-schedule-options {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.months-label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
}

.styled-select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    margin-left: 10px;
}

.interest-info {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deadline-info {
    margin-top: 15px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
}

/* Client fields */
.client-fields {
    margin-bottom: 25px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.client-fields input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.client-fields input:focus {
    outline: none;
    border-color: #660018;
}

/* Action buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.generate-pdf-button,
.send-email-button {
    background: #660018;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.generate-pdf-button {
    background: #2196F3;
}

.generate-pdf-button:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.send-email-button:hover {
    background: #880020;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 0, 24, 0.3);
}

.generate-pdf-button:disabled,
.send-email-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.action-buttons .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Messages */
#calc-msg {
    margin-top: 20px;
}

.msg-success,
.msg-error {
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.msg-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.msg-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Sidebar */
.calc-sidebar {
    width: 350px;
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    background: #f8f9fa;
    border-left: 1px solid #e9ecef;
    overflow-y: auto;
    align-self: flex-start;
}

.calc-summary-sticky {
    padding: 30px;
}

.summary-title {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-title .dashicons {
    color: #660018;
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-items::-webkit-scrollbar {
    width: 6px;
}

.summary-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb {
    background: #660018;
    border-radius: 3px;
}

.summary-item {
    font-size: 14px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid #e9ecef;
}

.summary-item .dashicons {
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.empty-summary {
    color: #999;
    text-align: center;
    font-style: italic;
    padding: 20px;
}

.calc-summary {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    align-items: center;
    font-size: 15px;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.summary-line.interest {
    color: #f39c12;
    font-weight: 600;
}

.interest-amount {
    color: #f39c12 !important;
}

.summary-line.discount {
    color: #28a745;
}

.discount-amount {
    color: #28a745 !important;
}

.summary-line.total {
    font-size: 20px;
    color: #660018;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
    margin-top: 15px;
    font-weight: 600;
}

.summary-line.total.with-discount {
    font-weight: 700;
}

/* Payment schedule summary */
#payment-schedule-summary {
    margin-top: 20px;
}

.schedule-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.schedule-summary h5 {
    margin: 0 0 10px 0;
    color: #495057;
    font-size: 16px;
}

.schedule-item {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

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

.schedule-note {
    margin-top: 10px;
    padding: 8px;
    background: #fff3cd;
    border-radius: 4px;
    color: #856404;
    font-size: 13px;
}

/* Info modal */
.info-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.info-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.info-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.info-modal-close:hover {
    color: #660018;
}

#info-modal-title {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 24px;
}

#info-modal-text {
    color: #495057;
    line-height: 1.6;
}

/* Utilities */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Required items cursor */
.calc-item[data-required="1"] {
    cursor: not-allowed !important;
}

.service-label:has(.calc-item[data-required="1"]) {
    cursor: not-allowed !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .calc-container {
        flex-direction: column;
    }
    
    .calc-sidebar {
        width: 100%;
        position: relative;
        height: auto;
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
    
    .calc-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .calc-main {
        padding: 20px;
    }
    
    .calc-main-title {
        font-size: 24px;
    }
    
    .service-group {
        padding: 20px;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .field-row {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        flex-wrap: wrap;
    }
    
    .service-label {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .calc-price {
        font-size: 16px;
    }
    
    /* Payment methods mobile */
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .payment-schedule-options {
        grid-template-columns: 1fr;
    }
    
    .payment-method-box {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .payment-method-box .dashicons {
        margin-bottom: 0;
    }
    
    .method-name {
        margin-bottom: 0;
    }
    
    .method-discount {
        margin-left: auto;
    }
    
    /* Mobile fixed summary */
    .calc-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        max-height: 50vh;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        border-radius: 20px 20px 0 0;
    }
    
    .calc-summary-sticky {
        padding: 20px;
    }
    
    .summary-items {
        max-height: 150px;
    }
    
    #pakkumised-calc {
        padding-bottom: 350px;
    }
}

@media (max-width: 480px) {
    .calc-main-title {
        font-size: 20px;
    }
    
    .group-title {
        font-size: 18px;
    }
    
    .service-name {
        font-size: 14px;
    }
    
    .calc-price {
        font-size: 14px;
    }
    
    .generate-pdf-button,
    .send-email-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

.msg-success, .msg-error {
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.msg-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.msg-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.msg-success .dashicons, .msg-error .dashicons {
    margin-right: 15px;
    font-size: 24px;
    margin-top: 2px;
}

.msg-success .dashicons {
    color: #28a745;
}

.msg-error .dashicons {
    color: #dc3545;
}

.msg-content {
    flex: 1;
}

.msg-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.msg-content p {
    margin-bottom: 10px;
}

.msg-content p:last-child {
    margin-bottom: 0;
}
css

Copy
/* Mobiilivaate parandused */
@media (max-width: 768px) {
    /* Muuda calc container paigutust mobiilis */
    .calc-container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Põhisisu peab olema esimene */
    .calc-main {
        order: 1 !important;
        width: 100% !important;
        float: none !important;
        padding: 15px !important; /* Vähendatud padding */
    }
    
    /* Kokkuvõte läheb alla */
    .calc-sidebar {
        order: 2 !important;
        width: 100% !important;
        float: none !important;
        margin-top: 20px !important; /* Vähendatud ülemine vahe */
        position: static !important;
        height: auto !important;
        border-left: none !important;
        padding: 15px !important; /* Vähendatud padding */
    }
    
    /* Eemaldame kokkuvõtte "sticky" omaduse mobiilis */
    .calc-summary-sticky {
        position: static !important;
        top: auto !important;
        padding: 15px !important; /* Vähendatud padding */
    }
    
    /* Parandame vormielementide laiused mobiilis */
    .form-group {
        width: 100% !important;
        margin-bottom: 10px !important; /* Vähendatud alumine vahe */
    }
    
    /* Teeme nupud täislaiuses mobiilis */
    .action-buttons {
        flex-direction: column !important;
        margin-top: 15px !important; /* Vähendatud ülemine vahe */
    }
    
    .generate-pdf-button {
        width: 100% !important;
        margin-bottom: 10px !important;
        padding: 10px 15px !important; /* Vähendatud padding */
    }
    
    /* Vähendame teenuse elementide paddingut */
    .service-item {
        padding: 15px !important; /* Vähendatud padding */
        margin-bottom: 10px !important; /* Vähendatud alumine vahe */
    }
    
    /* Vähendame grupi paddingut */
    .service-group {
        padding: 15px !important; /* Vähendatud padding */
        margin-bottom: 20px !important; /* Vähendatud alumine vahe */
    }
    
    /* Vähendame suboptions paddingut */
    .suboptions {
        padding: 10px !important; /* Vähendatud padding */
        margin-top: 10px !important; /* Vähendatud ülemine vahe */
    }
    
    /* Vähendame makseviisi sektsiooni paddingut */
    .payment-method-box {
        padding: 10px !important; /* Vähendatud padding */
    }
    
    /* Vähendame maksegraafiku paddingut */
    .schedule-box {
        padding: 10px 15px !important; /* Vähendatud padding */
    }
    
    /* Vähendame extended_schedule_options paddingut */
    #extended-schedule-options {
        padding: 15px !important; /* Vähendatud padding */
    }
    
    /* Vähendame kliendi andmete sektsiooni paddingut */
    .client-data-section {
        padding: 15px !important; /* Vähendatud padding */
    }
    
    /* Vähendame kokkuvõtte paddingut */
    .calc-summary {
        padding: 15px !important; /* Vähendatud padding */
    }
    
    /* Vähendame summary-item paddingut */
    .summary-item {
        padding: 8px !important; /* Vähendatud padding */
        margin-bottom: 5px !important; /* Vähendatud alumine vahe */
    }
    
    /* Vähendame schedule-summary paddingut */
    .schedule-summary {
        padding: 10px !important; /* Vähendatud padding */
    }
    
    /* Optimeerime pealkirju mobiilis */
    .calc-main-title {
        font-size: 22px !important; /* Väiksem font */
        margin-bottom: 20px !important; /* Vähendatud alumine vahe */
    }
    
    .group-title {
        font-size: 18px !important; /* Väiksem font */
        margin-bottom: 15px !important; /* Vähendatud alumine vahe */
    }
    
    .section-title {
        font-size: 18px !important; /* Väiksem font */
        margin-bottom: 15px !important; /* Vähendatud alumine vahe */
    }
    
    /* Vähendame paddingut pakkumised-calc elemendil */
    #pakkumised-calc {
        padding: 0 !important;
        border-radius: 8px !important; /* Väiksem ümardus */
    }
    
    /* Korrigeerime mobiilis pakkumised-calc kõrgust */
    #pakkumised-calc {
        padding-bottom: 0 !important;
    }
    
    /* Kompaktsem teenuste nimekiri */
    .service-label {
        gap: 10px !important; /* Vähendatud vahe */
    }
    
    .service-name {
        font-size: 15px !important; /* Väiksem font */
    }
    
    .calc-price {
        font-size: 15px !important; /* Väiksem font */
    }
    
    /* Vähendame info-nupu suurust */
    .info-button {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Vähendame summade kirja suurust kokkuvõttes */
    .summary-line {
        font-size: 14px !important; /* Väiksem font */
        margin-bottom: 8px !important; /* Vähendatud alumine vahe */
    }
    
    .summary-line.total {
        font-size: 18px !important; /* Väiksem font */
        padding-top: 10px !important; /* Vähendatud padding */
        margin-top: 10px !important; /* Vähendatud ülemine vahe */
    }
}

/* Nupu stiilid */
.generate-pdf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #660018;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
}

.generate-pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.generate-pdf-button .dashicons {
    margin-right: 8px;
}
