/* General styles (match newgall.html) */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.signup-container, .verify-container {
    max-width: 500px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555;
}

.error-message {
    color: red;
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}
/* Inline Badges next to Username */
.inline-badges {
    margin-left: 6px; /* Space between username and badges */
    display: inline-flex; /* Align badges horizontally */
    align-items: center; /* Vertically center badges with text */
    gap: 3px; /* Space between individual badges */
}

.inline-badge-item {
    display: inline-block;
    line-height: 1; /* Prevent extra vertical space */
}

.inline-badge-item img,
.inline-badge-item i {
    width: 16px; /* Adjust size as needed */
    height: 16px;
    font-size: 14px; /* Adjust Font Awesome size */
    vertical-align: middle; /* Align icon nicely with text */
    border-radius: 50%; /* Make images circular */
    /* Optional: Add a subtle border or shadow */
    /* border: 1px solid #eee; */
    /* box-shadow: 0 0 2px rgba(0,0,0,0.1); */
}

/* Ensure Font Awesome colors apply correctly */
.inline-badge-item i[class*="badge-color-"] {
    /* Color is applied directly by the class, !important might be needed if overridden */
}

