/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
*/
body {
    background-color: #111;
    color: #aaa;
}

/* Container for the form and download link */
#main {
    width: 1280px;
    height: calc(90vh - 120px);
    margin: 5vh auto 0 auto;
    background-color: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 60px 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Logo and title container */
#main .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}

/* Logo styling */
#main .header img {
    max-width: 240px;
    height: auto;
    border-radius: 8px;
}

/* Title styling */
/*#main .header .title {
    font-size: 48px;
    color: #1f2937;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}*/


#main .header .title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, #0073aa, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 1px;
    line-height: 1.8;
}


/* --- FORM STYLES (unchanged) --- */

#upload-xml-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

#xml_file {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.btn_wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
}

#upload-xml-form button, #xml-download-button {
    background-color: #0073aa;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    font-weight: 600;
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 20px;
}

#upload-xml-form button:hover, #xml-download-button:hover {
    background-color: #005d8f;
    transform: translateY(-2px);
}

#download-link-container {
    margin-top: 20px;
    text-align: center;
}

#upload-xml-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 100px auto 20px auto;
}