@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.header-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #4a4a4a;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin-bottom: 30px;
}

.actions-board {
    position: relative;
    width: 100%;
    height: 1200px; /* Give the container a fixed height for positioning */
    background: url('brick_wall_background.png') repeat;
    border-radius: 10px;
    margin-top: 20px;
    padding-top: 20px; /* Add padding for title */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1), inset 0 0 15px rgba(0,0,0,0.2);
}

.save-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #4a90e2;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease-in-out;
    z-index: 20; /* Ensure it's above post-it notes */
}

.save-btn:hover {
    background-color: #357ABD;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.save-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.actions-board:not(:first-of-type) {
    margin-top: 40px;
}

.board-title {
    font-family: 'Special Elite', cursive;
    font-size: 2.2rem;
    color: #4a4a4a;
    margin-top: 0;
    margin-bottom: 10px;
}

.board-subtitle {
    font-family: 'Special Elite', cursive;
    font-size: 1.2rem;
    color: #555;
    margin-top: -15px;
    margin-bottom: 25px;
}

.board-examples {
    padding: 0 20px;
    margin-top: 0;
}

.board-examples p {
    font-size: 1.4rem;
    color: #444;
    margin: 5px 0;
    line-height: 1.4;
}

.action-item {
    position: absolute;
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    padding: 10px 15px;
    background-color: #fdfd96; /* Light yellow */
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    width: 120px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.3s ease-in-out;
    cursor: default;
}

.action-item:hover {
    transform: scale(1.1) !important;
    z-index: 10;
}

/* New styles for question prompts board */
#question-prompts-container {
    height: auto; /* Auto height for content */
    padding-bottom: 40px;
}

.prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 30px;
    text-align: left;
    margin-top: 20px;
}

.prompt-category {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.prompt-category-title {
    font-family: 'Special Elite', cursive;
    font-size: 1.6rem;
    color: #333;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
    margin: 0 0 15px 0;
}

.prompt-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-family: 'Special Elite', cursive;
    font-size: 1.2rem;
    color: #4a4a4a;
}

.prompt-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.prompt-list li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

.full-width-category {
    grid-column: 1 / -1; /* Span full width */
}

.horizontal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.horizontal-list li {
    padding-left: 0;
    margin-bottom: 0;
}

.horizontal-list li::before {
    content: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .actions-board {
        height: 80vh; /* Taller on mobile */
    }

    .save-btn {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .board-title {
        font-size: 1.8rem;
    }

    .action-item {
        font-size: 1.2rem;
        width: 100px;
    }
}