/* Base Style */
header{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    background-color:#f3f7f5;
    padding: 5px 10px;
    width: 100%;
    min-height: 100px;
    
}
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: 110px; /* Sesuaikan tinggi logo sesuai kebutuhan */
}
body { 
    background-color: #f3f7f5; 
    font-family: 'Inter', sans-serif; 
    flex-direction:column;
    margin: 0;
    display:flex;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

/* Card Container */
.app-card {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),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;
    padding: 60px 40px;
    width: 100%;
    max-width: 1250px;
    margin: 5px 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;
    padding:20px;
}

.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;
}