/* ============================================================
   FILE: /assets/styles/memory/color-sequence-memory-test-section.css
   PROJECT: Brain Maze Lab
   SECTION: memory
   
   PURPOSE:           Styles for Memory Challenge. Somon Says

   DESCRIPTION:

   USED BY:  /components/memory/en/color-sequence-memory-test-section.php
             /components/memory/en/color-sequence-memory-test-section.php
             /components/memory/en/color-sequence-memory-test-section.php
             /components/memory/en/color-sequence-memory-test-section.php

   DEPENDENCIES:   

   AUTHOR: FPV Ivar
   CREATED: 2025-10-19
   LAST UPDATED: [YYYY-MM-DD]
============================================================ */
    .memory-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
            width: 90vw;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        .memory-btn {
            width: 100%;
            height: 40vw;
            max-height: 200px;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: transform 0.2s ease, opacity 0.3s;
        }
        .memory-btn:active {
            transform: scale(0.95);
        }
        .memory-red { background: red; }
        .memory-blue { background: blue; }
        .memory-green { background: green; }
        .memory-yellow { background: yellow; }
        .flash {
            background-color: white !important;
            filter: brightness(250%);
        }
        .memory-controls {
            margin-top: 20px;
        }
        .memory-button {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            margin: 5px;
            transition: background 0.3s;
        }
        #memory-start { background: #4CAF50; color: white; }
        #memory-reset { background: #FF5722; color: white; }
        button:hover {
            opacity: 0.8;
        }