/*
Theme Name: Gift Card Theme
Description: Minimal theme for gift card app
Version: 1.0
Author: Your Name
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
}

.gift-card-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gift-card-app {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
/*
Theme Name: Gift Card Theme
Description: Minimal theme for gift card app
Version: 1.0
Author: Your Name
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: #111827;
    color: white;
    overflow-x: hidden;
}

#gift-card-app {
    min-height: 100vh;
    width: 100%;
}

#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-size: 1.2rem;
    color: #9ca3af;
}

/* Hide WordPress admin bar if it shows */
html {
    margin-top: 0 !important;
}

#wpadminbar {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    #gift-card-app {
        padding: 10px;
    }
}}