/* Camel Calculator Plugin Styles */
.camel-calculator-plugin {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.camel-calculator-plugin * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.camel-calculator-plugin :root {
    --desert-sand: #e6ccad;
    --camel-brown: #a87c4f;
    --sand-dune: #c2a578;
    --oasis-blue: #5d8aa8;
    --sunset-orange: #d45a2b;
    --dark-desert: #8b6b47;
    --light-beige: #f8f3e9;
    --male-blue: #4a6fa5;
    --female-pink: #d67a9b;
    --dark-maroon: #5d0f1d;
    --maroon-accent: #8b1e3f;
}

.camel-calculator-plugin body {
    background-color: var(--light-beige);
    color: #333;
    background-image: radial-gradient(circle, var(--light-beige) 0%, #f0e6d6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Main Calculator Box with Dark Maroon Outline */
.camel-calculator-plugin .calculator-box {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--dark-maroon);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

/* Header */
.camel-calculator-plugin .calculator-header {
    background: linear-gradient(to right, var(--camel-brown), var(--dark-desert));
    color: white;
    padding: 25px 30px;
    text-align: center;
    border-bottom: 3px solid var(--dark-maroon);
}

.camel-calculator-plugin .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.camel-calculator-plugin .logo-icon {
    font-size: 2.8rem;
}

.camel-calculator-plugin h1 {
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.camel-calculator-plugin .tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

/* Content Area */
.camel-calculator-plugin .calculator-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Start Screen */
.camel-calculator-plugin .start-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.camel-calculator-plugin .start-description {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #666;
    font-size: 1.05rem;
    text-align: center;
    padding: 0 20px;
}

.camel-calculator-plugin .start-btn {
    background: linear-gradient(to right, var(--camel-brown), var(--dark-desert));
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(168, 124, 79, 0.3);
    margin-top: 10px;
    margin-bottom: 20px;
}

.camel-calculator-plugin .start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(168, 124, 79, 0.4);
}

/* Quick Access Buttons under Start Calculation */
.camel-calculator-plugin .quick-access-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.camel-calculator-plugin .quick-access-btn {
    background: white;
    color: var(--dark-maroon);
    border: 2px solid var(--dark-maroon);
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(93, 15, 29, 0.1);
    min-width: 220px;
}

.camel-calculator-plugin .quick-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(93, 15, 29, 0.15);
}

.camel-calculator-plugin .quick-access-btn.girlfriend:hover {
    background: var(--female-pink);
    color: white;
    border-color: var(--female-pink);
}

.camel-calculator-plugin .quick-access-btn.boyfriend:hover {
    background: var(--male-blue);
    color: white;
    border-color: var(--male-blue);
}

/* Content Section */
.camel-calculator-plugin .content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: left;
    width: 100%;
}

.camel-calculator-plugin .content-title {
    color: var(--dark-desert);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--dark-maroon);
    padding-bottom: 10px;
}

.camel-calculator-plugin .content-subtitle {
    color: var(--camel-brown);
    font-size: 1.4rem;
    margin: 25px 0 15px;
    text-align: left;
}

.camel-calculator-plugin .content-text {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: left;
}

.camel-calculator-plugin .content-list {
    margin: 20px 0 20px 40px;
    text-align: left;
}

.camel-calculator-plugin .content-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left;
}

.camel-calculator-plugin .highlight {
    background-color: #fff8f0;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--dark-maroon);
    margin: 25px 0;
    text-align: left;
    border: 2px solid var(--desert-sand);
}

/* New Calculator Buttons in Content */
.camel-calculator-plugin .content-calculator-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.camel-calculator-plugin .content-calc-btn {
    background: linear-gradient(to right, var(--maroon-accent), var(--dark-maroon));
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 15px rgba(93, 15, 29, 0.2);
    min-width: 250px;
}

.camel-calculator-plugin .content-calc-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(93, 15, 29, 0.3);
}

.camel-calculator-plugin .content-calc-btn.girlfriend {
    background: linear-gradient(to right, var(--female-pink), var(--maroon-accent));
}

.camel-calculator-plugin .content-calc-btn.boyfriend {
    background: linear-gradient(to right, var(--male-blue), var(--dark-maroon));
}

/* Gender Selection */
.camel-calculator-plugin .gender-selection {
    display: none;
    animation: fadeIn 0.8s ease;
    flex: 1;
}

.camel-calculator-plugin .gender-selection.active {
    display: block;
}

.camel-calculator-plugin .gender-title {
    font-size: 1.8rem;
    color: var(--dark-desert);
    margin-bottom: 25px;
    text-align: center;
}

.camel-calculator-plugin .gender-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.camel-calculator-plugin .gender-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 220px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--dark-maroon);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.camel-calculator-plugin .gender-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--dark-maroon);
}

.camel-calculator-plugin .gender-card.male:hover {
    border-color: var(--male-blue);
}

.camel-calculator-plugin .gender-card.female:hover {
    border-color: var(--female-pink);
}

.camel-calculator-plugin .gender-image {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0e6d6, #e6ccad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--dark-desert);
    border: 2px solid var(--dark-maroon);
}

.camel-calculator-plugin .gender-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--dark-desert);
}

/* Questionnaire */
.camel-calculator-plugin .questionnaire {
    display: none;
    animation: fadeIn 0.8s ease;
}

.camel-calculator-plugin .questionnaire.active {
    display: block;
}

.camel-calculator-plugin .questionnaire-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.camel-calculator-plugin .back-btn {
    background: transparent;
    color: var(--dark-maroon);
    border: 2px solid var(--dark-maroon);
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.camel-calculator-plugin .back-btn:hover {
    background: var(--dark-maroon);
    color: white;
}

.camel-calculator-plugin .questionnaire-title {
    font-size: 1.6rem;
    color: var(--dark-desert);
    flex: 1;
    text-align: center;
}

/* Form Styles */
.camel-calculator-plugin .form-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.camel-calculator-plugin .form-container::-webkit-scrollbar {
    width: 6px;
}

.camel-calculator-plugin .form-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.camel-calculator-plugin .form-container::-webkit-scrollbar-thumb {
    background: var(--dark-maroon);
    border-radius: 3px;
}

/* Centered Input Groups */
.camel-calculator-plugin .input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.camel-calculator-plugin .input-label {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    width: 120px;
    text-align: right;
}

.camel-calculator-plugin .input-box {
    display: flex;
    justify-content: center;
}

.camel-calculator-plugin .small-input {
    width: 120px;
    padding: 10px 15px;
    border: 2px solid var(--dark-maroon);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

/* CENTER ALIGNED DROPDOWNS */
.camel-calculator-plugin .small-select {
    width: 150px;
    padding: 10px 15px;
    border: 2px solid var(--dark-maroon);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    text-align-last: center;
}

/* Center the dropdown options text */
.camel-calculator-plugin .small-select option {
    text-align: center;
}

.camel-calculator-plugin .form-section {
    margin-bottom: 25px;
    text-align: center;
    padding: 0 20px;
}

.camel-calculator-plugin .section-title {
    color: var(--dark-desert);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

/* Options Grid */
.camel-calculator-plugin .options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.camel-calculator-plugin .option-card {
    background: white;
    border: 2px solid var(--dark-maroon);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.camel-calculator-plugin .option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--camel-brown);
}

.camel-calculator-plugin .option-card.selected {
    background: var(--camel-brown);
    color: white;
    border-color: var(--dark-desert);
}

.camel-calculator-plugin .body-option-card.selected {
    background: var(--female-pink);
    color: white;
    border-color: #b35979;
}

.camel-calculator-plugin .option-image {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0e6d6, #e6ccad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-desert);
    overflow: hidden;
    border: 1px solid var(--dark-maroon);
}

.camel-calculator-plugin .option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* PNG Placeholder */
.camel-calculator-plugin .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e6ccad, #d4b78f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-maroon);
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
}

/* Radio buttons */
.camel-calculator-plugin .radio-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 10px;
}

.camel-calculator-plugin .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.camel-calculator-plugin .radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--dark-maroon);
    cursor: pointer;
}

.camel-calculator-plugin .radio-option label {
    cursor: pointer;
    user-select: none;
}

.camel-calculator-plugin .calculate-btn-container {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
}

.camel-calculator-plugin .calculate-btn {
    background: linear-gradient(to right, var(--camel-brown), var(--dark-maroon));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(93, 15, 29, 0.3);
}

.camel-calculator-plugin .calculate-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(93, 15, 29, 0.4);
}

.camel-calculator-plugin .calculate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Body Options Grid */
.camel-calculator-plugin .body-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.camel-calculator-plugin .body-option-card {
    background: white;
    border: 2px solid var(--dark-maroon);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.camel-calculator-plugin .body-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--female-pink);
}

.camel-calculator-plugin .body-option-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0e6d6, #e6ccad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-desert);
    overflow: hidden;
    border: 1px solid var(--dark-maroon);
}

.camel-calculator-plugin .body-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Results */
.camel-calculator-plugin .results {
    display: none;
    animation: fadeIn 0.8s ease;
    flex: 1;
    text-align: center;
}

.camel-calculator-plugin .results.active {
    display: block;
}

.camel-calculator-plugin .results-header {
    text-align: center;
    margin-bottom: 20px;
}

.camel-calculator-plugin .results-header h2 {
    color: var(--dark-desert);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.camel-calculator-plugin .camel-count {
    font-size: 3.5rem;
    color: var(--sunset-orange);
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.camel-calculator-plugin .camel-visualization {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    min-height: 80px;
}

.camel-calculator-plugin .camel-icon {
    font-size: 2.2rem;
    color: var(--camel-brown);
    animation: camelBounce 2s infinite alternate;
}

@keyframes camelBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.camel-calculator-plugin .result-details {
    background: #f9f5f0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid var(--dark-maroon);
    text-align: center;
}

.camel-calculator-plugin .result-details h3 {
    color: var(--dark-desert);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.camel-calculator-plugin .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.camel-calculator-plugin .detail-item {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--dark-maroon);
    text-align: center;
    border: 1px solid var(--desert-sand);
}

.camel-calculator-plugin .detail-label {
    font-weight: 600;
    color: #555;
    font-size: 0.85rem;
}

.camel-calculator-plugin .detail-value {
    font-size: 1rem;
    color: var(--dark-desert);
    margin-top: 4px;
}

.camel-calculator-plugin .action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.camel-calculator-plugin .action-btn {
    background: var(--dark-maroon);
    color: white;
    border: none;
    padding: 11px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.camel-calculator-plugin .action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(93, 15, 29, 0.3);
}

.camel-calculator-plugin .share-btn {
    background: var(--oasis-blue);
    color: white;
    border: none;
    padding: 11px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 5px;
}

.camel-calculator-plugin .share-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(93, 138, 168, 0.3);
}

.camel-calculator-plugin .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    text-align: center;
}

.camel-calculator-plugin .error-message.show {
    display: block;
}

.camel-calculator-plugin .hidden {
    display: none;
}

/* Color Selection Section */
.camel-calculator-plugin .color-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.camel-calculator-plugin .color-label {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    width: 120px;
    text-align: right;
}

/* Single Selection Sections */
.camel-calculator-plugin .single-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.camel-calculator-plugin .single-label {
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    width: 120px;
    text-align: right;
}

/* Footer */
.camel-calculator-plugin .calculator-footer {
    background: #f9f5f0;
    padding: 15px 30px;
    text-align: center;
    border-top: 2px solid var(--dark-maroon);
    font-size: 0.85rem;
    color: #666;
}

/* Floating Camels */
.camel-calculator-plugin .floating-camel {
    position: fixed;
    font-size: 2.5rem;
    z-index: -1;
    opacity: 0.1;
    animation: float 25s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .camel-calculator-plugin .calculator-box {
        max-width: 95%;
    }
    
    .camel-calculator-plugin .calculator-content {
        padding: 20px;
    }
    
    .camel-calculator-plugin .gender-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .camel-calculator-plugin .gender-card {
        width: 100%;
        max-width: 220px;
    }
    
    .camel-calculator-plugin .options-grid,
    .camel-calculator-plugin .body-options-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
    
    .camel-calculator-plugin .details-grid {
        grid-template-columns: 1fr;
    }
    
    .camel-calculator-plugin .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camel-calculator-plugin .action-btn,
    .camel-calculator-plugin .share-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        margin: 5px 0;
    }
    
    .camel-calculator-plugin .input-group,
    .camel-calculator-plugin .color-selection,
    .camel-calculator-plugin .single-selection {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .camel-calculator-plugin .input-label,
    .camel-calculator-plugin .color-label,
    .camel-calculator-plugin .single-label {
        text-align: center;
        width: auto;
    }
    
    .camel-calculator-plugin .content-section {
        padding: 10px 0;
    }
    
    .camel-calculator-plugin .content-title {
        font-size: 1.5rem;
    }
    
    .camel-calculator-plugin .content-subtitle {
        font-size: 1.2rem;
    }
    
    .camel-calculator-plugin .content-list {
        margin-left: 20px;
    }
    
    .camel-calculator-plugin .radio-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .camel-calculator-plugin .content-calculator-buttons,
    .camel-calculator-plugin .quick-access-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .camel-calculator-plugin .content-calc-btn,
    .camel-calculator-plugin .quick-access-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .camel-calculator-plugin .calculator-header {
        padding: 20px 15px;
    }
    
    .camel-calculator-plugin h1 {
        font-size: 1.8rem;
    }
    
    .camel-calculator-plugin .calculator-content {
        padding: 15px;
    }
    
    .camel-calculator-plugin .options-grid,
    .camel-calculator-plugin .body-options-grid {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
    
    .camel-calculator-plugin .questionnaire-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .camel-calculator-plugin .back-btn {
        align-self: flex-start;
    }
    
    .camel-calculator-plugin .gender-image {
        width: 100px;
        height: 100px;
    }
    
    .camel-calculator-plugin .radio-group {
        flex-direction: row;
        gap: 15px;
    }
    
    .camel-calculator-plugin .content-calc-btn,
    .camel-calculator-plugin .quick-access-btn {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .camel-calculator-plugin .start-btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
}