/******************************************************************************
 *
 * XML Spreadsheet 2003 → Excel XLSX
 *
 * Version : 1.0.0
 *
 ******************************************************************************/

/*=============================================================================
    Global
=============================================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:"Segoe UI",Tahoma,sans-serif;

    background:#f3f6fb;

    color:#222;

}

/*=============================================================================
    Layout
=============================================================================*/

.container{

    max-width:760px;

    margin:40px auto;

    padding:20px;

}

.card{

    background:#fff;

    border:1px solid #dbe3ef;

    border-radius:12px;

    padding:32px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

/*=============================================================================
    Header
=============================================================================*/

header{

    text-align:center;

    margin-bottom:20px;

}

header h1{

    font-size:32px;

    color:#2563eb;

    margin-bottom:8px;

}

header h2{

    font-size:22px;

    font-weight:600;

    margin-bottom:12px;

}

header p{

    color:#666;

    line-height:1.5;

}

hr{

    margin:24px 0;

    border:none;

    border-top:1px solid #e5e7eb;

}

/*=============================================================================
    Section
=============================================================================*/

section{

    margin-bottom:24px;

}

.section-title{

    display:block;

    font-weight:600;

    margin-bottom:10px;

}

/*=============================================================================
    File Input
=============================================================================*/

input[type=file]{

    width:100%;

    padding:12px;

    border:1px solid #cbd5e1;

    border-radius:8px;

    background:#fafafa;

}

/*=============================================================================
    Convert Button
=============================================================================*/

#convertBtn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

    background:#2563eb;

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

#convertBtn:hover{

    background:#1d4ed8;

}

#convertBtn:active{

    transform:scale(.98);

}

/*=============================================================================
    Status
=============================================================================*/

#statusOutput{

    min-height:52px;

    border:1px solid #dbe3ef;

    border-radius:8px;

    background:#fafafa;

    padding:14px;

    display:flex;

    align-items:center;

    font-size:16px;

}

/*=============================================================================
    Download
=============================================================================*/

#downloadBtn{

    display:block;

    width:100%;

    text-align:center;

    text-decoration:none;

    padding:15px;

    border-radius:8px;

    background:#16a34a;

    color:white;

    font-size:18px;

    font-weight:600;

}

#downloadBtn:hover{

    background:#15803d;

}

/*=============================================================================
    Footer
=============================================================================*/

footer{

    text-align:center;

    margin-top:24px;

    color:#666;

    font-size:14px;

}

/*=============================================================================
    Mobile
=============================================================================*/

@media(max-width:640px){

    .container{

        margin:10px;

        padding:10px;

    }

    .card{

        padding:20px;

    }

    header h1{

        font-size:24px;

    }

    header h2{

        font-size:18px;

    }

}
/*============================================================
    File Information
============================================================*/

#fileInfo{

    margin-top:12px;

    padding:14px;

    border:1px solid #d8d8d8;

    border-radius:8px;

    background:#fafafa;

    line-height:1.9;

    font-size:16px;

}

#fileInfo span{

    font-weight:700;

    color:#2563eb;

}