/* =============================
   Lorenca Technology Solutions
   Modern Dark IT Theme
   ============================= */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background-color: #1E1E1E; /* dark background */
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding-bottom: 80px;
}

/* Container for all page content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Navbar */
.navbar {
    background: #2C2F33;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    border-bottom: 3px solid #0078D7;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar a {
    color: #C1C1C1;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
}

.navbar a:hover,
.navbar a.active {
    color: #00C7B7;
}

/* Hero / Header */
.hero {
    background: linear-gradient(135deg, #0078D7, #00C7B7);
    padding: 40px 20px;
    color: white;
    border-radius: 10px;
    margin: 20px auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
}

a {
    color: white;
}

/* Cards (content panels) */
.card {
    background: #2C2F33;
    padding: 25px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    border-top: 4px solid #0078D7;
    text-align: center;
}

/* File List */
.file-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.file-list li {
    margin: 5px 0;
}

/* 🔥 FIX: Force file list links to stay white */
.file-list a {
    color: #FFFFFF;
    text-decoration: none;
}

.file-list a:visited {
    color: #FFFFFF;
}

.file-list a:hover {
    color: #FFFFFF;
}

/* Footer */
footer {
    background: #121354;
    padding: 15px 0;
    color: #FFFFFF;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
    border-top: 2px solid #0078D7;
    text-align: center;
}

/* Drag & Drop Area */
.drop-area {
    width: 100%;
    height: 150px;
    border: 2px dashed #00C7B7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2c2f33;
    color: #ccc;
    cursor: pointer;
    margin-bottom: 15px;
    text-align: center;
}

.drop-area.hover {
    background: #1e1e1e;
    color: #00C7B7;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background: #333;
    border-radius: 5px;
    height: 22px;
    margin-top: 10px;
}

.progress-bar {
    background: #00C7B7;
    width: 0%;
    height: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 22px;
    color: #000;
    border-radius: 5px;
}

/* Messages */
#resultMessage {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
}

/* Buttons / Inputs */
input[type="submit"], button {
    background-color: #00C7B7;
    color: #1E1E1E;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover, button:hover {
    background-color: #0078D7;
}
