body{
    font-family:Arial;
    padding:20px;
    background:rgb(228, 207, 207);
}

h1{
    color:rgb(212, 149, 33);
}

button{
    padding:8px;
    background:rgb(212, 149, 33);
    color:white;
    border:none;
    margin:5px;
}

button:hover{
    background:rgb(169, 111, 4);
}

input,select{
    padding:8px;
    margin:5px;
}

.tab{
    margin-bottom:20px;
}

.tab-content{
    margin-top:20px;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 20px;
    background: #FDF8F0; 
    color: #4E2E1E;       
    line-height: 1.5;
}

h1 {
    color: #C46A2E;      
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 24px;
}

button {
    padding: 8px 20px;
    background: #C46A2E;  
    color: white;
    border: none;
    margin: 5px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

button:hover {
    background: #A0522A; 
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

button:active {
    transform: translateY(1px);
}

input.select {
    padding: 8px 16px;
    margin: 5px;
    background: #FFFBF5;
    border: 1px solid #E2CAA4;  
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
    outline: none;
    color: #3E2A1C;
}

input.select:focus {
    border-color: #C46A2E;
    box-shadow: 0 0 0 3px rgba(196, 106, 46, 0.2);
}

.tab {
    margin-bottom: 20px;
    border-bottom: 2px solid #EAD5B8;  /* garis tipis warna cream gelap yee :) */
    padding-bottom: 8px;
}

.tab-content {
    margin-top: 20px;
    background: rgba(255, 250, 240, 0.7);
    padding: 16px 20px;
    border-radius: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}