.v-calculators-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.v-calculators-layout * {
    box-sizing: border-box !important;
}

.v-calc-main-content {
    font-family: inherit;
    color: #333;
    max-width: 100%;
}

/* Sidebar Styles */
.v-calc-sidebar {
    position: relative;
}

.v-sidebar-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 35px;
    border: 1px solid #edf2f7;
    position: sticky;
    top: 100px;
}

.v-sidebar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-top: 0;
    margin-bottom: 15px;
}

.v-sidebar-desc {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 25px;
}

.v-sidebar-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.v-sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2d3748;
}

.v-sidebar-contact-list i {
    color: var(--v-color-primary, #b50e35);
    margin-top: 4px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.v-sidebar-contact-list a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

.v-sidebar-contact-list a:hover {
    color: var(--v-color-primary, #b50e35);
}

.v-sidebar-btn {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Original Container code replaced by layout above */
.v-calculators-container {
    margin: 0 auto;
    padding: 40px 20px;
    font-family: inherit;
    color: #333;
}

.v-calc-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #edf2f7;
}

.v-calc-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    word-break: break-word;
}

.v-calc-separator {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 30px;
}

.v-mt-50 { margin-top: 50px; }
.v-mt-30 { margin-top: 30px; }
.v-mb-30 { margin-bottom: 30px; }

/* Rent Calculator Box */
.v-calc-box {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.v-calc-row {
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.v-calc-row label {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    text-align: right;
    line-height: 1.3;
}

.v-calc-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.v-calc-bold {
    font-weight: 800;
}

.v-calc-input:focus, .v-calc-input-outline:focus {
    outline: none;
    border-color: var(--v-color-primary, #b50e35);
    box-shadow: 0 4px 12px rgba(181, 14, 53, 0.15);
    transform: translateY(-1px);
}

.v-calc-bg-green {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.v-calc-bg-green:focus, .v-calc-bg-green:hover {
    border-color: #86efac;
}

.v-calc-bg-red {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Info Blocks */
.v-calc-info-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.v-calc-info-block p, .v-calc-text-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.v-calc-info-block ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.v-calc-info-block li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 10px;
}

.v-calc-info-block strong {
    color: #2d3748;
    font-weight: 700;
}

/* VAT Calculators */
.v-vat-container {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.v-vat-container:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.v-vat-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 18px 25px;
    border-bottom: 1px solid #e2e8f0;
}

.v-vat-header {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.v-calc-copy-full-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.v-calc-copy-full-btn:hover {
    border-color: var(--v-color-primary, #b50e35);
    color: var(--v-color-primary, #b50e35);
    background: #fff5f7;
}

.v-vat-body {
    padding: 30px 25px;
    background: #ffffff;
}

.v-vat-body .v-vat-row {
    grid-template-columns: 160px 160px 1fr;
    align-items: center;
    gap: 15px;
}

.v-vat-body .v-calc-row label {
    text-align: left;
    color: #475569;
}

.v-calc-text-out {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.v-calc-select-wrap {
    position: relative;
    width: 100%;
}

.v-calc-select {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    background-color: #fff;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.v-calc-select:hover {
    border-color: #cbd5e1;
}

.v-calc-input-outline {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--v-color-primary, #b50e35);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.v-calc-input-readonly {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
    color: #64748b;
    box-sizing: border-box;
}

/* Responsive */
@media (max-width: 992px) {
    .v-calculators-layout {
        grid-template-columns: 1fr;
    }
    
    .v-calc-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .v-calculators-layout {
        padding: 20px 15px !important;
        margin: 0 !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .v-calc-section {
        padding: 25px 20px !important;
        margin-bottom: 25px !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .v-calc-title {
        font-size: 1.25rem !important;
        margin-bottom: 15px;
    }
    .v-calc-row label {
        font-size: 0.95rem !important;
    }
    .v-calc-input, .v-calc-input-outline, .v-calc-input-readonly, .v-calc-select {
        padding: 8px 10px !important;
        font-size: 1rem !important;
    }
    .v-calc-row, .v-vat-body .v-calc-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
        width: 100% !important;
    }
    .v-calc-row label {
        text-align: left;
        width: 100% !important;
        white-space: normal !important;
        margin-bottom: 5px;
    }
    .v-vat-row .v-calc-select-wrap, 
    .v-vat-row input {
        flex: 1;
        min-width: 0;
    }
    .v-calc-text-out {
        width: 100%;
        margin-top: 5px;
        font-size: 0.85rem !important;
    }
    .v-vat-header-wrap {
        padding: 12px 10px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .v-vat-header {
        font-size: 1.05rem !important;
    }
    .v-vat-body {
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .v-calc-info-block p, .v-calc-text-block p, .v-calc-info-block li {
        font-size: 0.9rem !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
}
