/* ===== DROPDOWN STYLES ===== */
/* Base dropdown (applies to all selects) */
/* Base dropdown */
/* Base dropdown */
select {
    background: rgba(0, 0, 0, 0.4);        /* translucent */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    width: 160px;
    backdrop-filter: blur(4px);            /* glass effect */
}

/* Focus (keep same translucent background) */
select:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.4);        /* keep same as base */
    border-color: #ff4757;                 /* accent */
    box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.25);
}

/* Hover (border only, no background change) */
select:hover {
    border-color: #ddd;
    background: rgba(0, 0, 0, 0.4);        /* unchanged */
}

/* Dropdown options */
option {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px;
}

/* ===== CONTACT FORM STYLES ===== */
.removal-form-wrapper {
	margin: 2rem auto;
	text-align: left;
}

.removal-form-wrapper h2 {
	margin-bottom: 1rem;
	color: var(--light-color);
}

.contact-form {
	padding: 2rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form label {
	font-weight: 600;
	color: #333;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
	outline: none;
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form button {
	background: #007bff;
	color: #fff;
	border: none;
	padding: 0.85rem 1.25rem;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s ease-in-out;
}

.contact-form button:hover {
	background: #0056b3;
}

#contactResponse {
	margin-top: 1rem;
	font-weight: 500;
	text-align: center;
	color: var(--light-color);
}