/* CalWhat Calculator Platform - Procrastination Cost Calculator Styles */

/* ========================================
   BASE STYLES
   ======================================== */


    .glass-card h3 {
        color: #2d3748;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .glass-card h3 i {
            color: #667eea;
        }

.form-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #48bb78;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

    .form-input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .form-input:disabled {
        background: #f7fafc;
        cursor: not-allowed;
    }

label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

    label i.fa-info-circle,
    label i.fa-question-circle {
        color: #667eea;
        cursor: help;
        margin-left: 5px;
        font-size: 0.9rem;
    }

/* ========================================
   PROCRASTINATION CALCULATOR SPECIFIC STYLES
   ======================================== */

/* 21-Day Action Plan Styles */
.action-plan-item {
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .action-plan-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }

.action-plan-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.action-plan-content {
    flex: 1;
}

.action-plan-task {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.action-plan-desc {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
}

.action-plan-tip {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .action-plan-tip i {
        color: #667eea;
    }

/* Milestone Days */
.action-plan-item.milestone {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

    .action-plan-item.milestone .action-plan-day {
        background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    }

    .action-plan-item.milestone .action-plan-task {
        color: #f59e0b;
    }

/* Share Image Mode */
.share-image-mode {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

    .share-image-mode .glass-card {
        background: rgba(255, 255, 255, 0.95);
    }

    .share-image-mode h3 {
        color: white;
    }

/* Project Type Cards (if using card selection in future) */
.project-type-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .project-type-card:hover {
        border-color: #667eea;
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    }

    .project-type-card.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
    }

.project-type-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

    .project-type-card.active .project-type-icon {
        color: white;
    }

/* SEO Content Section */
.seo-content h2 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-content p,
.seo-content li {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.seo-content ol,
.seo-content ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

.seo-content ol li,
.seo-content ul li {
    margin-bottom: 10px;
}

.seo-content strong {
    color: #667eea;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .action-plan-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-plan-day {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .glass-card {
        padding: 20px;
    }

    .glass-card h3 {
        font-size: 1.3rem;
    }

    .action-plan-day {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .action-plan-task {
        font-size: 1rem;
    }

    .action-plan-desc {
        font-size: 0.9rem;
    }
}

/* ========================================
   SKILL TREE VISUALIZATION
   ======================================== */

.mermaid-container {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    overflow-x: auto;
    text-align: center;
}

.mermaid-container svg {
    max-width: 100%;
    height: auto;
}

.skill-tree-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4a5568;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@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);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }
}
