#fbs-progress {
    width: 100%;
    background: #f3f3f3;
    border: 1px solid #ccc;
    margin-top: 10px;
    position: relative;
}
#fbs-bar {
    width: 0;
    height: 20px;
    background: #4caf50;
}
#fbs-percent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-weight: bold;
}
#fbs-message {
    margin-top: 10px;
    font-weight: bold;
}
#fbs-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}
#fbs-form h3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4em;
}

#fbs-form label {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #333;
}

#fbs-form input[type="text"],
#fbs-form textarea,
#fbs-form select,
#fbs-form input[type="file"] {
    width: 100%;
    padding: 8px 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

#fbs-form textarea {
    resize: vertical;
}

#fbs-form button[type="submit"] {
    margin-top: 18px;
    padding: 10px 20px;
    background-color: #59c0fb;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
}

#fbs-form button[type="submit"]:hover {
    background-color: #47a7e8;
}