*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
    color:#222;
}

/* =========================
   HEADER / NAV
========================= */

header{
    background:#4285f4;
    color:white;
    padding:20px;
}

nav{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

/* =========================
   LAYOUT CONTAINER
========================= */

.container{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

/* =========================
   CARD SYSTEM
========================= */

.card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* =========================
   FORM META PHOTO
========================= */

.meta-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.meta-form label{
    font-size:13px;
    display:flex;
    flex-direction:column;
    gap:6px;
    color:#333;
}

/* =========================
   INPUTS / TEXTAREA
========================= */

input, textarea{
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:13px;
    transition:0.2s ease;
    width:100%;
}

input:disabled, textarea:disabled{
    background:#f3f3f3;
    color:#777;
    cursor:not-allowed;
}

input:focus, textarea:focus{
    outline:none;
    border-color:#4285f4;
    box-shadow:0 0 0 2px rgba(66,133,244,0.15);
}

/* =========================
   BUTTONS
========================= */

button{
    background:#4285f4;
    color:white;
    border:none;
    padding:10px 12px;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
    transition:0.2s ease;
}

button:hover{
    background:#3367d6;
}

button:active{
    transform:scale(0.98);
}

/* =========================
   SAVE STATUS
========================= */

#saveStatus{
    font-size:12px;
    color:#666;
    min-height:16px;
}

/* =========================
   KONVA CONTAINER FIX
========================= */

#container{
    max-width:100%;
    overflow:auto;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

/* =========================
   RESPONSIVE (IMPORTANT)
========================= */

@media (max-width: 900px){

    .container{
        padding:20px 10px;
    }

    .card{
        padding:15px;
    }

    .container > .card > div{
        flex-direction:column !important;
    }

    nav{
        justify-content:center;
    }
}