/* Base Style */
header{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    padding: 35px 20px;
    background-color:#f3f7f5;
    height: 45px;
    
    
}
header .logo img {
    mix-blend-mode: multiply; /* Ini akan menghapus kotak putih di logo secara otomatis */
     display: block;/* Pastikan logo tetap proporsional */
     width: auto;
        height: 100px; /* Sesuaikan tinggi logo sesuai kebutuhan */
}
body { 
    background-color: #f3f7f5; 
    font-family: 'Inter', sans-serif; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    margin: 0;
}

/* Card Container */
.app-card {
    background-image: url(https://images.unsplash.com/photo-1644088379091-d574269d422f?q=80&w=1393&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px;
    width: 100%;
    max-width: none;
    margin: 40px auto;
    text-align: center;
}

/* Typography */
.header-title { margin: 0 0 8px 0; color: #edeff1; font-size: 22px; }
.sub-text { color: #eaedf1; font-size: 14px; margin-bottom: 25px; }

/* Upload Box Section */
.upload-box {
    margin-bottom: 24px;
    text-align: left;
}

.upload-file {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    color: #475569;
}

.file-input {
    width: 100%;
    padding: 10px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    box-sizing: border-box;
}

/* Green Button (Fiverr Style) */
.btn-execute {
    width: 100%;
    padding: 14px;
    background-color: #1dbf73;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-execute:hover { background-color: #19a463; }

/* Result Badge */
.badge {
    background: #eefcf5;
    color: #1dbf73;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}
/* Area hasil prediksi */
.result-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9; /* Garis tipis pemisah */
}

/* Teks keterangan hasil */
.result-text {
    font-size: 15px;
    color: #475569;
    margin: 0;
}