/* ===== Global Styles ===== */
body {
    background-color: #f5f7fa;
}

/* ===== Common Container Styles ===== */
.ai-prompt-category-container,
#prompt-display {
    width: 100%;
    margin: 0 auto;
    padding: 0; /* Padding removed to avoid double-padding and uneven sides */
    box-sizing: border-box; /* Ensure no overflow if padding is added in the future */
}

/* ===== Main Content Section Styling ===== */
#prompt-main-content,
.ai-prompt-category-main-section {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem auto;
    padding: 2rem; /* Padding moved here for even spacing */
    width: 100%;
    /* max-width removed to allow full width */
    box-sizing: border-box; /* Prevents overflow by including padding in width */
}

/* ===== Typography ===== */
.cpt-prompt-main-heading,
.ai-prompt-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cpt-prompt-section-heading,
.ai-prompt-category-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.cpt-prompt-text,
.ai-prompt-category-content {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .cpt-prompt-main-heading,
    .ai-prompt-category-title {
        font-size: 2rem;
    }

    .cpt-prompt-section-heading,
    .ai-prompt-category-section-title {
        font-size: 1.5rem;
    }

    #prompt-main-content,
    .ai-prompt-category-main-section {
        padding: 1.5rem;
    }
}

/* ===== Animation ===== */
.ai-prompt-category-container,
#prompt-display {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 