.elementor-93 .elementor-element.elementor-element-2843849{--display:flex;}/* Start custom CSS *//* --- CF7 FORM CONTAINER --- */
.hreb-cf7-form {
    background-color: #121212;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.hreb-input-group {
    margin-bottom: 25px;
}

.hreb-label {
    display: block;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- TEXT & SELECT INPUTS --- */
.hreb-code-input, 
.hreb-select {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

/* Specific Style for Match ID (Code look) */
.hreb-code-input {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    font-weight: bold;
    color: #00ff88; /* Neon Green Text */
}

/* Focus States */
.hreb-code-input:focus, 
.hreb-select:focus {
    border-color: #00ff88;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

/* --- RADIO BUTTONS --- */
.wpcf7-list-item {
    display: block;
    margin: 10px 0;
}

.wpcf7-list-item label {
    cursor: pointer;
    font-size: 1rem;
    color: #fff;
}

input[type="radio"] {
    accent-color: #00ff88; /* Browser support for radio color */
    margin-right: 10px;
    transform: scale(1.2);
}

/* --- DRAG & DROP UPLOAD ZONE (Trick) --- */
.hreb-upload-zone {
    position: relative;
    width: 100%;
    height: 120px;
    border: 2px dashed #444;
    border-radius: 8px;
    background-color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    overflow: hidden;
}

.hreb-upload-zone:hover {
    border-color: #00ff88;
    background-color: #1e1e1e;
}

/* The Visual Layer (Icon) */
.upload-visuals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.85rem;
    pointer-events: none; /* Let clicks pass through to input */
}

/* The Actual Input (Invisible but covers the box) */
.hreb-file-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hide default ugly input */
    cursor: pointer;
    z-index: 5;
}

/* --- SUBMIT BUTTON (GOLD) --- */
.hreb-submit-wrapper input[type="submit"] {
    width: 100%;
    background: #FFD700; /* Gold */
    color: #000; /* Black Text */
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.hreb-submit-wrapper input[type="submit"]:hover {
    background: #fff; /* White on hover */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}/* End custom CSS */