/* --- Gustabe Dev Color Capture Styles (Independent Module) --- */

.gustabe-dev-capture-container {
    text-align: center;
}

/* --- Button Main Style --- */
.gustabe-dev-capture-btn-main {
    /* ‼️ ใช้สไตล์ Gradient และ Shadow แบบเดียวกับ Paint Master */
    background: linear-gradient(135deg, #007bff, #0056b3); /* Navy Blue/Professional Gradient */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    width: 100%; /* ขยายเต็มความกว้าง */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); 
    transition: all 0.3s ease;
}

.gustabe-dev-capture-btn-main:hover {
    background: linear-gradient(135deg, #0056b3, #007bff);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gustabe-dev-capture-success {
    /* สไตล์เมื่อกดสำเร็จ */
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important; /* Green on Success */
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.4);
}


/* --- Message Status --- */
.gustabe-dev-capture-message-status {
    margin-top: 10px;
    font-size: 0.9em;
    min-height: 18px; /* ป้องกันการกระโดดของ Layout */
    opacity: 0;
    transition: opacity 0.3s;
    color: #34495e; /* สีตัวอักษรเริ่มต้น */
}