/* Unique styles for Taarten Bakkerij */

/* Intro Bar Overrides */
.intro-bar {
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom: 5px solid #00BCD4;
}

.child-name {
    color: #00838F; /* Dark Cyan */
}

/* Mode Buttons Overrides */
.mode-btn {
    border-color: #B2EBF2;
}

.mode-btn:hover {
    border-color: #00BCD4;
    background: #E0F7FA;
}

.mode-label {
    color: #00838F;
}

/* From games/taarten/style.css */
/* Excluding body/html resets as they are handled by main style.css/dashboard.css or context */

#game-container {
    background-color: #FFF;
    border: 5px solid #00BCD4;
    box-sizing: border-box;
    /* width/height handled by dashboard.css/responsive */
}

#start-btn {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

#start-btn:active {
    transform: scale(0.95);
}

/* Feedback Styling */
.feedback-toast {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2000;
    font-size: 2em;
    display: none;
    pointer-events: none;
}
