/* Gold Calculator - Main Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 2rem 1rem;
    text-align: center;
    color: white;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calculator-icon {
    font-size: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.tagline {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Gold Price Section */
.gold-price-section {
    padding: 2rem 1rem;
    background: white;
}

.price-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.price-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.trend-icon {
    font-size: 1.25rem;
}

.price-header h2 {
    color: #92400e;
    font-size: 1.5rem;
    font-weight: bold;
}

.price-subtitle {
    color: #b45309;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #b45309;
    font-size: 0.875rem;
}

/* Calculator Section */
.calculator-section {
    padding: 2rem 1rem;
    background: #f8fafc;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calculator-card, .results-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calculator-card h3, .results-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.calculator-subtitle, .results-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-row {
    display: flex;
    gap: 0.5rem;
}

input[type="number"], select {
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input[type="number"] {
    flex: 1;
}

select {
    min-width: 140px;
}

input[type="number"]:focus, select:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(245, 158, 11, 0.5);
}

.calc-icon {
    font-size: 1rem;
}

/* Results Styles */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.calc-placeholder {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.results-display {
    display: none;
}

.results-display.active {
    display: block;
}

.total-value {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.value-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.value-label {
    color: #047857;
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-item {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.result-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.result-value {
    color: #6b7280;
    font-size: 0.875rem;
}

.disclaimer {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.75rem;
    color: #92400e;
}

/* Price Table Section */
.price-table-section {
    padding: 2rem 1rem;
    background: white;
}

.price-table-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.price-table-card h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.table-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.price-table {
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #fef3c7 100%);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.karat-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.karat-badge {
    font-weight: bold;
    font-size: 1.125rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.gold-24k { color: #fbbf24; }
.gold-22k { color: #f59e0b; }
.gold-18k { color: #d97706; }
.gold-14k { color: #b45309; }
.gold-10k { color: #92400e; }

.purity-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.price-info {
    text-align: right;
}

.price-value {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1f2937;
    display: block;
}

.price-unit {
    color: #6b7280;
    font-size: 0.75rem;
}

.market-update {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.875rem;
    color: #1e40af;
}

/* SEO Content Sections */
.content-section {
    padding: 3rem 1rem;
    background: #f8fafc;
}

.content-section:nth-child(even) {
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.content-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.content-card li:before {
    content: "•";
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Steps and Process Styles */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-section {
    padding: 3rem 1rem;
    background: white;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
}

.faq-question {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 1rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p, .footer-section li {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.copyright {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .value-amount {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .input-row {
        flex-direction: column;
    }
    
    select {
        min-width: auto;
    }
    
    .header {
        padding: 1.5rem 1rem;
    }
    
    .calculator-card, .results-card {
        padding: 1.5rem;
    }
    
    .price-table-card {
        padding: 1.5rem;
    }
}



@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
}



.calculator-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.calculator-container {
    align-items: start;
}

.calculator-card, .results-card {
    min-height: 400px; /* Ensure enough height for content */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 769px) {
    .calculator-container {
        grid-template-columns: 1fr 1fr;
    }
}



@media (max-width: 768px) {
    .tagline {
        display: none;
    }

    .calculator-section {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .calculator-card, .results-card {
        min-height: auto;
    }
}



@media (max-width: 768px) {
    .header {
        padding: 1rem 0.5rem;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .gold-price-section {
        padding: 1rem 0.5rem;
    }

    .price-card {
        padding: 1rem;
    }

    .current-price {
        font-size: 2rem;
    }
}







@media (max-width: 768px) {
    .calculator-section {
        padding: 0.5rem;
    }

    .calculator-card, .results-card {
        padding: 1rem;
    }

    .calculator-card h3, .results-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .calculator-subtitle, .results-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .input-group {
        margin-bottom: 1rem;
    }

    .input-group label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    input[type="number"], select {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .calculate-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .no-results {
        padding: 1rem;
    }

    .calc-placeholder {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .total-value {
        padding: 1rem;
    }

    .value-amount {
        font-size: 2rem;
    }

    .results-grid {
        gap: 0.5rem;
    }

    .result-item {
        padding: 0.75rem;
    }

    .result-label {
        font-size: 0.75rem;
    }

    .result-value {
        font-size: 0.75rem;
    }
}



@media (max-width: 768px) {
    .calculator-card, .results-card {
        padding: 0.75rem;
    }

    .calculator-card h3, .results-card h3 {
        margin-bottom: 0.25rem;
    }

    .calculator-subtitle, .results-subtitle {
        margin-bottom: 0.75rem;
    }

    .input-group {
        margin-bottom: 0.75rem;
    }

    .input-group label {
        margin-bottom: 0.15rem;
    }

    input[type="number"], select {
        padding: 0.4rem;
    }

    .calculate-btn {
        padding: 0.6rem 0.8rem;
    }

    .total-value {
        padding: 0.75rem;
    }

    .value-amount {
        font-size: 1.8rem;
    }

    .results-grid {
        gap: 0.4rem;
    }

    .result-item {
        padding: 0.6rem;
    }
}



@media (max-width: 768px) {
    .calculator-section {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .calculator-container {
        gap: 0.5rem;
    }

    .calculator-card, .results-card {
        padding: 0.5rem;
    }

    .calculator-card h3, .results-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .calculator-subtitle, .results-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .input-group {
        margin-bottom: 0.5rem;
    }

    .input-group label {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }

    input[type="number"], select {
        padding: 0.3rem;
        font-size: 0.8rem;
    }

    .calculate-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }

    .no-results {
        padding: 0.5rem;
    }

    .calc-placeholder {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .total-value {
        padding: 0.5rem;
    }

    .value-amount {
        font-size: 1.5rem;
    }

    .results-grid {
        gap: 0.3rem;
    }

    .result-item {
        padding: 0.5rem;
    }

    .result-label {
        font-size: 0.7rem;
    }

    .result-value {
        font-size: 0.7rem;
    }
}



@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0.5rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .tagline {
        display: none;
    }

    .gold-price-section {
        padding: 0.5rem 0.5rem;
    }

    .price-card {
        padding: 0.5rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .price-subtitle, .price-note {
        font-size: 0.75rem;
    }
}



@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .results-card {
        width: 100%; /* Ensure it takes full width on mobile */
    }
}



@media (max-width: 768px) {
    .results-card {
        max-width: 300px; /* Adjust as needed */
        margin-left: auto;
        margin-right: auto;
    }
}



@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0.5rem;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        margin-bottom: 0.5rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .tagline {
        display: none; /* Hide tagline on mobile */
    }

    .gold-price-section {
        padding: 0.5rem 0.5rem;
    }

    .price-card {
        padding: 0.5rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .price-subtitle, .price-note {
        font-size: 0.75rem;
    }

    .calculator-section {
        padding: 0.5rem;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .calculator-card, .results-card {
        padding: 0.75rem;
    }

    .calculator-card h3, .results-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .calculator-subtitle, .results-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .input-group {
        margin-bottom: 0.75rem;
    }

    .input-group label {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    input[type="number"], select {
        padding: 0.4rem;
        font-size: 0.9rem;
    }

    .calculate-btn {
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }

    .no-results {
        padding: 1rem;
    }

    .calc-placeholder {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .total-value {
        padding: 1rem;
    }

    .value-amount {
        font-size: 2rem;
    }

    .results-grid {
        gap: 0.5rem;
    }

    .result-item {
        padding: 0.75rem;
    }

    .result-label {
        font-size: 0.75rem;
    }

    .result-value {
        font-size: 0.75rem;
    }

    .results-card {
        max-width: 300px; /* Adjust as needed */
        margin-left: auto;
        margin-right: auto;
    }
}



@media (max-width: 768px) {
    .header h1 {
        font-size: 1.2rem;
    }

    .logo {
        gap: 0.25rem;
    }

    .calculator-icon {
        font-size: 1.5rem;
    }

    .price-header h2 {
        font-size: 1.2rem;
    }

    .current-price {
        font-size: 1.5rem;
    }
}



@media (max-width: 768px) {
    body {
        overflow-y: auto; /* Allow scrolling on the body */
    }

    .container {
        min-height: auto; /* Remove min-height to allow content to dictate height */
    }

    .header {
        padding: 0.25rem 0.25rem; /* Further reduce header padding */
    }

    .header h1 {
        font-size: 1.1rem; /* Further reduce header font size */
    }

    .calculator-icon {
        font-size: 1.2rem; /* Further reduce icon size */
    }

    .gold-price-section {
        padding: 0.25rem 0.25rem; /* Further reduce gold price section padding */
    }

    .price-card {
        padding: 0.25rem; /* Further reduce price card padding */
    }

    .current-price {
        font-size: 1.2rem; /* Further reduce current price font size */
    }

    .price-subtitle, .price-note {
        font-size: 0.65rem; /* Further reduce subtitle/note font size */
    }

    .calculator-section {
        padding: 0.25rem; /* Further reduce calculator section padding */
    }

    .calculator-card, .results-card {
        padding: 0.5rem; /* Further reduce calculator/results card padding */
    }

    .calculator-card h3, .results-card h3 {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .calculator-subtitle, .results-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .input-group {
        margin-bottom: 0.4rem;
    }

    .input-group label {
        font-size: 0.7rem;
        margin-bottom: 0.05rem;
    }

    input[type="number"], select {
        padding: 0.2rem;
        font-size: 0.7rem;
    }

    .calculate-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .no-results {
        padding: 0.5rem;
    }

    .calc-placeholder {
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
    }

    .total-value {
        padding: 0.4rem;
    }

    .value-amount {
        font-size: 1.2rem;
    }

    .results-grid {
        gap: 0.2rem;
    }

    .result-item {
        padding: 0.4rem;
    }

    .result-label {
        font-size: 0.6rem;
    }

    .result-value {
        font-size: 0.6rem;
    }

    .results-card {
        max-width: 280px; /* Slightly narrower */
    }
}



@media (max-width: 768px) {
    .header {
        padding: 0.2rem 0.2rem; /* Very small padding */
    }

    .header h1 {
        font-size: 1rem; /* Very small font size for header title */
    }

    .calculator-icon {
        font-size: 1rem; /* Very small icon size */
    }

    .logo {
        gap: 0.1rem; /* Reduce gap */
    }

    .gold-price-section {
        padding: 0.2rem 0.2rem; /* Very small padding */
    }

    .price-card {
        padding: 0.2rem; /* Very small padding */
    }

    .price-header h2 {
        font-size: 1rem; /* Very small font size */
    }

    .current-price {
        font-size: 1.2rem; /* Very small font size */
    }

    .price-subtitle, .price-note {
        font-size: 0.6rem; /* Very small font size */
    }

    .calculator-section {
        padding: 0.5rem; /* Minimal padding for calculator section */
        min-height: calc(100vh - 100px); /* Adjust based on estimated header/price section height */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .calculator-container {
        flex-direction: column; /* Stack calculator and results vertically */
        width: 100%;
        max-width: 320px; /* Max width for the calculator container */
    }

    .calculator-card, .results-card {
        padding: 0.5rem;
        width: 100%;
    }

    .results-card {
        margin-top: 0.5rem; /* Small margin between calculator and results */
    }

    .calculator-card h3, .results-card h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .calculator-subtitle, .results-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .input-group {
        margin-bottom: 0.5rem;
    }

    .input-group label {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }

    input[type="number"], select {
        padding: 0.3rem;
        font-size: 0.7rem;
    }

    .calculate-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }

    .no-results {
        padding: 0.5rem;
    }

    .calc-placeholder {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .total-value {
        padding: 0.5rem;
    }

    .value-amount {
        font-size: 1.5rem;
    }

    .results-grid {
        gap: 0.3rem;
    }

    .result-item {
        padding: 0.5rem;
    }

    .result-label {
        font-size: 0.6rem;
    }

    .result-value {
        font-size: 0.6rem;
    }
}

