.custom-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: fit-content;
}

.custom-link:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

/* Container Styling */
.custom-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
    transition: box-shadow 0.3s ease;
}

.custom-container:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-content {
    display: flex;
    align-items: center;
    padding: 15px;
}

.same-day-cleaning {
    margin-right: 20px;
}

.custom-text {
    flex: 1;
}

.custom-header h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.custom-body p {
    color: #555;
}

.custom-footer {
    text-align: left;
}

.custom-button {
    padding: 8px 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.custom-button:hover {
    background-color: #0056b3;
}
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Stages */
.form-stage {
    display: none;
}

.service-item {
    margin-bottom: 10px;
}

.service-item label {
    display: block;
    margin-bottom: 10px; /* Add margin to separate the label from the button container */
    font-weight: bold;
}
.button-container {
    display: flex;
    align-items: center;
}

.button-container button {
    margin: 0 5px;
    padding: 5px 10px;
    font-size: 16px;
}

.button-container span {
    margin: 0 10px;
    font-size: 16px;
}

.service-item button {
    margin-left: 10px;
}

.price-display {
    margin-top: 20px;
    font-size: 18px;
}

textarea {
    width: 100%;
    height: 100px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}