/* Contact form button styling */
.contact-form-button {
    background-color: #0A9BCD;
    color: #FFF;
    padding: 14px 30px;
    border: none;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 0; /* 90-degree corners */
    font-size: 14px; /* Adjust font size as needed */
}

.contact-form-button:hover {
    background-color: #6EC1E4;
}a

     /* Popup form styling */
 #custom-contact-form-popup {
     display: none;
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 1000;
     background: white;
     padding: 15px;
     border: 1px solid #e0e0e0;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }

#custom-contact-form {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
}

#custom-contact-form label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

#custom-contact-form input[type="text"],
#custom-contact-form input[type="submit"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
}

#custom-contact-form input[type="submit"] {
    background-color: #0A9BCD;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0; /* No round corners */
}

#custom-contact-form input[type="submit"]:hover {
    background-color: #6EC1E4;
}

/* Response message styling */
#form-response {
    margin-top: 15px;
    font-size: 14px;
    color: green;
}

#form-response.error {
    color: red;
}

/* Close button styling */
.close-popup {
    margin-top: 8px;
    background-color: #0A9BCD;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 0; /* No round corners */
    transition: background-color 0.3s ease;
}

.close-popup:hover {
    background-color: #6EC1E4;
}

/* Header styling */
#custom-contact-form-popup h2 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    text-align: center;
}

/* Responsive styling */
@media (max-width: 600px) {
    .contact-form-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    #custom-contact-form-popup {
        padding: 10px;
    }

    #custom-contact-form label {
        font-size: 12px;
    }

    #custom-contact-form input[type="text"],
    #custom-contact-form input[type="submit"] {
        padding: 6px;
        font-size: 10px;
    }

    #custom-contact-form input[type="submit"] {
        padding: 10px;
    }

    .close-popup {
        padding: 6px 12px;
        font-size: 10px;
    }

    #custom-contact-form-popup h2 {
        font-size: 16px;
    }

    #form-response {
        font-size: 12px;
    }
}

.dashicons, .dashicons-before:before {
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: never;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 20px;
    height: 20px;
    font-size: 20px;
    vertical-align: top;
    text-align: center;
    transition: color .1s ease-in;
}

.dashicons-arrow-right-alt2:before
{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
}
.dashicons-arrow-left-alt2:before
{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f053";
}
