/* Logic Style Mixing Upload - CSS UI */

.logic-ui {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.logic-ui h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.logic-ui input[type="text"],
.logic-ui input[type="email"],
.logic-ui textarea,
.logic-ui input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 15px;
}

.logic-ui textarea {
    resize: vertical;
}

.logic-ui input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4caf50;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.logic-ui input[type="submit"]:hover {
    background-color: #45a049;
}

#progressBar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

#progressBar div {
    height: 100%;
    width: 0;
    background-color: #4caf50;
    transition: width 0.3s;
}

#statusMsg {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
    text-align: center;
}
