/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, Arial, sans-serif;
    margin:0;
    padding:0;
    min-height:100vh;
    overflow-x:hidden;
    background:#ffb6d9;
}
/* HEADER */
.header{
    text-align:center;
    margin-bottom:20px;
}

.header h2{
    font-size:20px;
    color:#333;
}

/* CARD */
.card{
    background:white;
    padding:15px;
    border-radius:12px;
    margin-top:15px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* FORM */
input, select{
    width:100%;
    padding:12px;
    margin-top:10px;
    font-size:16px;
    border:1px solid #ddd;
    border-radius:8px;
}

button{
    width:100%;
    padding:14px;
    margin-top:14px;
    font-size:16px;
    background:white;
    color:#d63384;
    border:2px solid #f8a8d0; /* outline soft pink */
    border-radius:14px;
    font-weight:600;
    cursor:pointer;
    
    box-shadow:0 6px 15px rgba(214,51,132,0.15);
    transition:all 0.25s ease;
}

/* HOVER */
button:hover{
    background:#d63384;
    color:white;
    border:2px solid #d63384;
    box-shadow:0 10px 20px rgba(214,51,132,0.35);
    transform:translateY(-3px);
}

/* ACTIVE (saat ditekan) */
button:active{
    transform:translateY(0px);
    box-shadow:0 4px 10px rgba(214,51,132,0.25);
}

/* TABLE MOBILE */
.table{
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
}

.table th, .table td{
    padding:8px;
    border-bottom:1px solid #eee;
    font-size:14px;
}

.text-right{
    text-align:right;
}

.total-box{
    font-size:18px;
    font-weight:bold;
    margin-top:15px;
}
/* BACKGROUND IMAGE LAYER */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:url('../bg-alba.png') center center / cover no-repeat;
    opacity:0.3;
    z-index:-1;
}
.wrapper{
    max-width:480px;
    margin:auto;
    padding:15px;
}