/* CalWhat Calculator Platform - DividendYieldCalculator Specific Styles */
/* This file contains calculator-specific styles */

    .card-title h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2d3748;
        margin: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: flex;
        align-items: center;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .form-group label i {
        color: #667eea;
        margin-right: 8px;
        font-size: 1.1rem;
    }

    .tooltip-icon {
        margin-left: 8px;
        color: #cbd5e0;
        cursor: help;
        transition: color 0.3s ease;
    }

    .tooltip-icon:hover {
        color: #667eea;
    }

    .form-input {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: 'Roboto Mono', monospace;
    }

    .form-input:focus {
        outline: none;
        border-color: #48bb78;
        box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
    }

    .input-group {
        position: relative;
    }

    .input-addon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #718096;
        font-weight: 600;
        pointer-events: none;
    }


    .result-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        padding: 30px;
        color: white;
        margin-bottom: 25px;
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    }

    .result-card .card-title {
        border-bottom-color: rgba(255, 255, 255, 0.3);
    }

    .result-card .card-title h2,
    .result-card .card-title i {
        color: white;
        background: none;
        -webkit-text-fill-color: white;
    }

    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .result-item:last-child {
        border-bottom: none;
    }

    .result-item-label {
        font-size: 1rem;
        opacity: 0.9;
    }

    .result-item-value {
        font-size: 1.3rem;
        font-weight: 700;
        font-family: 'Roboto Mono', monospace;
    }

    .result-item-large {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        padding: 20px 0;
        font-family: 'Roboto Mono', monospace;
    }

    .chart-container {
        position: relative;
        height: 300px;
        margin-top: 20px;
    }

    .info-box {
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-left: 4px solid #667eea;
        padding: 15px 20px;
        border-radius: 8px;
        margin-top: 20px;
    }

    .info-box h4 {
        color: #2d3748;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .info-box ul {
        margin: 0;
        padding-left: 20px;
    }

    .info-box li {
        color: #4a5568;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .badge-yield-high {
        background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 10px;
    }

    .badge-yield-medium {
        background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 10px;
    }

    .badge-yield-low {
        background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 10px;
    }

    .seo-content {
        background: white;
        border-radius: 20px;
        padding: 40px;
        margin-top: 40px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    }

    .seo-content h2 {
        color: #2d3748;
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 3px solid #667eea;
    }

    .seo-content h3 {
        color: #2d3748;
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .seo-content p, .seo-content li {
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2rem;
        }

        .page-header .subtitle {
            font-size: 1rem;
        }

        .glass-card {
            padding: 20px;
        }

        .result-item-large {
            font-size: 1.5rem;
        }

        .seo-content {
            padding: 25px;
        }
    }