/**
 * AirBnB Listing Analyzer Styles
 * Note: For consistent styling across all pages, the unified stylesheet
 * (drbnb-unified.css) should be loaded. This file contains legacy styles
 * for backward compatibility.
 */

/* Import unified styles for components */
@import url('./drbnb-unified.css');

.airbnb-analyzer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.airbnb-analyzer-form {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.airbnb-analyzer-button {
    background: #FDBB30;
    color: #004269;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.airbnb-analyzer-button:hover {
    background: #e5a828;
}

.airbnb-analyzer-loading {
    text-align: center;
    padding: 20px;
}

.airbnb-analyzer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.airbnb-analyzer-score {
    display: flex;
    align-items: center;
    gap: 15px;
}

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.score-circle.excellent {
    background: #28a745;
}

.score-circle.good {
    background: #17a2b8;
}

.score-circle.average {
    background: #ffc107;
}

.score-circle.poor {
    background: #dc3545;
}

.airbnb-analyzer-photo {
    margin-bottom: 30px;
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.airbnb-analyzer-photo img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 4px;
    display: inline-block;
}

.recommendation-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #ddd;
}

.recommendation-item.success,
.recommendation-item.excellent,
.recommendation-item.good {
    border-left-color: #28a745;
}

.recommendation-item.warning,
.recommendation-item.average {
    border-left-color: #ffc107;
}

.recommendation-item.error,
.recommendation-item.poor {
    border-left-color: #dc3545;
}

.recommendation-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.recommendation-item .score {
    font-weight: normal;
    opacity: 0.7;
}

.recommendation-item .message {
    font-weight: 600;
    margin-bottom: 10px;
}

.recommendation-item .tips {
    margin-top: 10px;
    padding-left: 20px;
}

.airbnb-analyzer-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .airbnb-analyzer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .airbnb-analyzer-score {
        margin-top: 15px;
    }
}

.hidden {
    display: none;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #004269;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.results-container {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.analysis-section {
    margin-bottom: 20px;
}

.analysis-section h3 {
    margin-top: 0;
    color: #484848;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.score-good {
    color: #008489;
}

.score-average {
    color: #FFB400;
}

.score-poor {
    color: #004269;
}

.recommendation {
    background-color: #EFFBFB;
    padding: 10px;
    border-left: 4px solid #008489;
    margin-top: 10px;
}

.airbnb-analyzer-listing-title {
    margin-bottom: 20px;
    text-align: center;
}

.airbnb-analyzer-listing-title h2 {
    color: #484848;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.airbnb-analyzer-claude-insights {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #7e57c2;
}

.airbnb-analyzer-claude-insights h3 {
    color: #7e57c2;
    margin-top: 0;
    margin-bottom: 20px;
}

.claude-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.claude-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.claude-rating {
    font-weight: 600;
    margin-bottom: 10px;
}

.claude-alternatives, .claude-suggestions {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.claude-alternatives h5, .claude-suggestions h5 {
    margin-top: 0;
    margin-bottom: 10px;
}

.claude-alternatives ul, .claude-suggestions ul {
    margin: 0;
    padding-left: 20px;
}

/* Multi-step form styles */
.airbnb-analyzer-step {
    margin-bottom: 30px;
}

.airbnb-analyzer-back-button {
    background: #666;
    margin-left: 10px;
}

.airbnb-analyzer-back-button:hover {
    background: #555;
}

.airbnb-analyzer-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #004269;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CAPTCHA container */
#airbnb-analyzer-captcha {
    margin-bottom: 15px;
}

/* ========================================
   PILL FORM STYLES (Hero & Footer)
   White input + Yellow button - matches design
   ======================================== */

.airbnb-analyzer-pill-form {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.airbnb-analyzer-pill-wrapper {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Override theme reset.css - input[type=url] and button styles */
.airbnb-analyzer-pill-input,
.airbnb-analyzer-container input.airbnb-analyzer-pill-input,
.airbnb-analyzer-container input[type="url"].airbnb-analyzer-pill-input {
    flex: 1;
    min-width: 0;
    padding: 0 24px !important;
    border: none !important;
    background: #ffffff !important;
    font-size: 16px;
    color: #333;
    outline: none;
    width: auto !important;
}

.airbnb-analyzer-pill-input::placeholder {
    color: #717171;
}

.airbnb-analyzer-pill-button,
.airbnb-analyzer-container button.airbnb-analyzer-pill-button {
    background-color: #FDBB30 !important;
    color: #004269 !important;
    border: none !important;
    padding: 12px 32px !important;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    border-radius: 25px;
}

.airbnb-analyzer-pill-button:hover {
    background-color: #e5a828 !important;
    color: #004269 !important;
    transform: translateY(-1px);
}

.airbnb-analyzer-pill-button:active {
    transform: translateY(0);
}

/* Hero size - large */
.airbnb-analyzer-hero .airbnb-analyzer-pill-wrapper {
    max-width: 640px;
    width: 600px;
    height: 56px;
}

.airbnb-analyzer-hero .airbnb-analyzer-pill-input {
    font-size: 17px;
    padding: 0 28px;
}

.airbnb-analyzer-hero .airbnb-analyzer-pill-button {
    padding: 0 40px;
    font-size: 17px;
}

.airbnb-analyzer-hero .airbnb-analyzer-title {
    font-size: 28px;
    margin-bottom: 24px;
}

.airbnb-analyzer-hero .airbnb-analyzer-form {
    padding: 28px;
}

.airbnb-analyzer-hero .airbnb-analyzer-step-title {
    font-size: 20px;
}

.airbnb-analyzer-hero .airbnb-analyzer-input {
    padding: 14px 18px;
    font-size: 16px;
}

/* Footer size - smaller */
.airbnb-analyzer-footer .airbnb-analyzer-pill-wrapper {
    max-width: 480px;
    height: 48px;
}

.airbnb-analyzer-footer .airbnb-analyzer-pill-input {
    font-size: 15px;
    padding: 0 20px;
}

.airbnb-analyzer-footer .airbnb-analyzer-pill-button {
    padding: 0 28px;
    font-size: 15px;
}

.airbnb-analyzer-footer .airbnb-analyzer-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.airbnb-analyzer-footer .airbnb-analyzer-form {
    padding: 20px;
}

.airbnb-analyzer-footer .airbnb-analyzer-step-title {
    font-size: 18px;
}

.airbnb-analyzer-footer .airbnb-analyzer-input {
    padding: 12px 16px;
    font-size: 15px;
}

/* Step 2 form styling */
.airbnb-analyzer-step-title {
    margin-top: 0;
    margin-bottom: 8px;
}

.airbnb-analyzer-step-desc {
    margin-bottom: 20px;
    color: #666;
}

.airbnb-analyzer-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.airbnb-analyzer-input {
    width: 100%;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.airbnb-analyzer-input:focus {
    border-color: #FFD93D;
}

.airbnb-analyzer-step-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.airbnb-analyzer-back-button,
.airbnb-analyzer-container button.airbnb-analyzer-back-button {
    background: #004269 !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.airbnb-analyzer-back-button:hover {
    background: #003352 !important;
    color: white !important;
}

/* Mobile responsive - stack vertically on small screens */
@media (max-width: 640px) {
    .airbnb-analyzer-pill-wrapper {
        flex-direction: column;
        border-radius: 16px;
        height: auto !important;
    }

    .airbnb-analyzer-pill-input {
        padding: 16px 20px !important;
        border-radius: 16px 16px 0 0;
        font-size: 16px !important;
    }

    .airbnb-analyzer-pill-button {
        padding: 16px 24px !important;
        border-radius: 0 0 16px 16px;
        font-size: 16px !important;
    }

    .airbnb-analyzer-hero .airbnb-analyzer-pill-wrapper {
        max-width: 100%;
    }

    .airbnb-analyzer-footer .airbnb-analyzer-pill-wrapper {
        max-width: 100%;
    }

    .airbnb-analyzer-step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .airbnb-analyzer-step-actions .airbnb-analyzer-pill-button,
    .airbnb-analyzer-step-actions .airbnb-analyzer-back-button {
        width: 100%;
    }

    /* reCAPTCHA wrapper - allow horizontal scroll on very narrow screens if needed */
    .airbnb-analyzer-captcha-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Amenities analysis styles */
.amenities-categories {
    margin-top: 15px;
    margin-bottom: 15px;
}

.amenity-category {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.amenity-category h6 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #484848;
    font-weight: 600;
}

.amenity-category p {
    margin: 0;
}

.standout-amenities {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.standout-amenities li {
    margin-bottom: 5px;
    color: #008489;
}

/* Reviews analysis styles */
.review-strengths {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.review-strengths li {
    margin-bottom: 5px;
    color: #28a745;
}

/* Cancellation policy analysis styles */
.cancellation-policy-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.cancellation-policy-name {
    font-weight: 600;
    color: #484848;
    margin-bottom: 5px;
}

.cancellation-policy-description {
    font-size: 14px;
    color: #717171;
}

.instant-book-badge {
    display: inline-block;
    background: #008489;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

/* Debug styles */
.airbnb-analyzer-debug {
    margin-top: 30px;
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.debug-toggle {
    margin-bottom: 15px;
}

.debug-toggle button {
    background: #008489;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
}

.debug-toggle button:hover {
    background: #006c70;
}

.debug-section {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: auto;
    max-height: 500px;
}

.debug-section pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
    font-size: 12px;
}

/* Pending Message Styles */
.airbnb-analyzer-pending {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.airbnb-analyzer-pending .pending-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.airbnb-analyzer-pending h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.airbnb-analyzer-pending > p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.pending-details {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.pending-details p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.pending-details ul {
    margin: 0;
    padding-left: 20px;
}

.pending-details li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.4;
}

.pending-reference {
    margin: 20px 0;
    font-family: monospace;
    color: #888;
}

.pending-actions {
    margin-top: 25px;
}

.pending-actions .button {
    background: #004269;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.pending-actions .button:hover {
    background: #005a87;
}

/* Expert Analysis Processing Status */
.expert-analysis-processing-status {
    text-align: center;
    color: white;
}

.expert-analysis-processing-status .processing-icon {
    font-size: 3em;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.expert-analysis-processing-status h3 {
    margin: 0 0 15px 0;
    color: white;
    font-size: 1.4em;
}

.expert-analysis-processing-status .processing-message {
    font-size: 1.1em;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.expert-analysis-processing-status .processing-details {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: left;
}

.expert-analysis-processing-status .processing-details p {
    margin: 5px 0;
    font-size: 0.95em;
}

.expert-analysis-processing-status .processing-actions {
    margin: 20px 0;
}

.expert-analysis-processing-status .processing-actions .button {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.expert-analysis-processing-status .processing-actions .button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.expert-analysis-processing-status .processing-actions .button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.expert-analysis-processing-status .processing-info {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: left;
}

.expert-analysis-processing-status .processing-info p {
    margin: 10px 0;
    font-weight: bold;
}

.expert-analysis-processing-status .processing-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.expert-analysis-processing-status .processing-info li {
    margin: 5px 0;
    line-height: 1.3;
}

/* Prevent button interaction during processing */
.expert-analysis-processing-active #expert-analysis-btn {
    pointer-events: none;
    opacity: 0.6;
}

.expert-analysis-processing-active #expert-analysis-retry {
    pointer-events: none;
    opacity: 0.6;
}

/* ========================================
   EXPERT ANALYSIS ENHANCED STYLES
   ======================================== */

/* Circular Gauge Animations */
@keyframes gaugeLoad {
    from {
        stroke-dashoffset: 314;
    }
}

.gauge-arc {
    animation: gaugeLoad 1s ease-out forwards;
}

/* Score Card Hover Effects */
.score-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.score-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Report Card Animations */
.report-card {
    transition: box-shadow 0.2s ease;
}

.report-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Mobile-First Expert Analysis Styles */
@media (max-width: 768px) {
    .expert-analysis-report {
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .report-hero {
        padding: 24px 16px !important;
    }
    
    .report-title {
        font-size: 22px !important;
    }
    
    .scores-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .score-card {
        padding: 14px 10px !important;
    }
    
    .score-card-title {
        font-size: 11px !important;
    }
    
    .report-actions {
        flex-direction: column !important;
        padding: 16px !important;
    }
    
    .action-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .report-sections {
        padding: 12px !important;
    }
    
    .report-card {
        margin-bottom: 12px !important;
    }
    
    .card-header {
        padding: 14px !important;
    }
    
    .card-content {
        padding: 14px !important;
        font-size: 14px !important;
    }
    
    .card-title {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .scores-grid {
        grid-template-columns: 1fr !important;
    }
    
    .score-card {
        flex-direction: row !important;
        text-align: left !important;
        gap: 14px !important;
    }
    
    .score-card-gauge {
        margin-bottom: 0 !important;
    }
    
    .score-card-info {
        align-items: flex-start !important;
        flex: 1 !important;
    }
    
    .meta-pills {
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* Print Styles for Expert Analysis */
@media print {
    .expert-analysis-report {
        box-shadow: none !important;
    }
    
    .report-actions,
    .action-btn {
        display: none !important;
    }
    
    .report-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .scores-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ========================================
   DRBNB TOAST NOTIFICATIONS
   ======================================== */

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.drbnb-toast {
    animation: toastSlideIn 0.3s ease-out;
}

/* ========================================
   DRBNB PAYMENT BUTTONS
   ======================================== */

.drbnb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.drbnb-btn-primary {
    background: #FDBB30;
    color: #004269;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(253, 187, 48, 0.3);
}

.drbnb-btn-primary:hover {
    background: #e5a828;
    color: #004269;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 187, 48, 0.4);
}

.drbnb-btn-secondary {
    background: #004269;
    color: white;
    border: none;
    border-radius: 25px;
}

.drbnb-btn-secondary:hover {
    background: #003352;
    color: white;
    border: none;
}

.drbnb-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ========================================
   DRBNB MODAL STYLES
   ======================================== */

.drbnb-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.drbnb-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.drbnb-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.drbnb-modal-header h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.drbnb-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.drbnb-modal-body {
    padding: 24px;
}

.drbnb-form-group {
    margin-bottom: 16px;
}

.drbnb-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.drbnb-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.drbnb-input:focus {
    border-color: #0072a9;
} 

.expert-analysis-section p {
    font-size: 16px;
    color: #ffffff;
}