/* -----------------------------
   Common Form Styling
------------------------------ */
.simple-user-form,
#upl-profile-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.simple-user-form h2,
#upl-profile-form h2,
.simple-user-form p strong,
#upl-profile-form p strong {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.simple-user-form p,
#upl-profile-form p {
    margin-bottom: 15px;
}

.simple-user-form input[type="text"],
.simple-user-form input[type="email"],
.simple-user-form input[type="password"],
#upl-profile-form input[type="text"],
#upl-profile-form input[type="email"],
#upl-profile-form input[type="password"],
#upl-profile-form button,
.simple-user-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.simple-user-form input[type="submit"],
#upl-profile-form button {
    background: #0073aa;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.simple-user-form input[type="submit"]:hover,
#upl-profile-form button:hover {
    background: #005177;
}

/* -----------------------------
   Messages
------------------------------ */
.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

.message {
    color: green;
    font-weight: bold;
    margin-top: 10px;
}

/* -----------------------------
   License Table Styling
------------------------------ */
.upl-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.upl-table th,
.upl-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.upl-table th {
    background: #0073aa;
    color: #fff;
}

.upl-table tr:nth-child(even) {
    background: #f9f9f9;
}

.upl-table tr:hover {
    background: #f1f1f1;
}

/* -----------------------------
   License Form Styling
------------------------------ */
#upl-profile-form + form {
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
}

#upl-profile-form + form input[type="text"],
#upl-profile-form + form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#upl-profile-form + form input[type="submit"] {
    background: #0073aa;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

#upl-profile-form + form input[type="submit"]:hover {
    background: #005177;
}
