#gsseo-progress-bar {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

#gsseo-progress-fill {
    transition: width 0.3s ease-in-out;
    line-height: 24px;
}



/***********************/


/* General Styles */
.wrap {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Form Table */
.form-table {
    width: 100%;
    margin-bottom: 20px;
}

.form-table th {
    font-weight: bold;
    width: 160px;
    text-align: left;
    padding: 10px;
    font-size: 16px;
    color: #555;
}

.form-table td {
    padding-left: 20px;
    padding-bottom: 15px;
}

select, input[type="file"] {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

select:focus, input[type="file"]:focus {
    border-color: #0073aa;
}

input[type="submit"], .button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 10px;
}

input[type="submit"]:hover, .button:hover {
    background-color: #005d8d;
}

/* Progress Bar Styles */
#gsseo-progress-wrapper {
    margin-top: 30px;
    display: none;
}

#gsseo-progress-wrapper div {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

#gsseo-progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 6px;
    height: 30px;
}

#gsseo-progress-fill {
    height: 100%;
    width: 0;
    background-color: #0073aa;
    text-align: center;
    line-height: 30px;
    color: white;
    font-weight: bold;
    border-radius: 6px;
}

/* Success/Failure Message */
#gsseo-finished-message {
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    font-weight: bold;
}

.notice {
    padding: 12px;
    margin-top: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.notice-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notice-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notice p {
    margin: 0;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .form-table th {
        width: 100%;
        font-size: 14px;
    }

    .form-table td {
        padding-left: 0;
    }

    input[type="submit"], .button {
        width: 100%;
        padding: 12px;
    }
}

