/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


/* General container for the search tool */
.ycm-coverage-search-wrapper {
/*    max-width: 800px;*/
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Search form styling */
#ycm-coverage-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
/*
#ycm-address-input {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
}*/

#ycm-coverage-search-form button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#ycm-coverage-search-form button:hover {
    background-color: #005177;
}

#ycm-search-status {
/*    margin-top: 10px;*/
    font-size: 0.9em;
    font-weight: bold;
}

/* Results table styling (mimicking output.png) */
.ycm-packages-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.ycm-packages-table th,
.ycm-packages-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: left;
}

.ycm-packages-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.ycm-packages-table tbody tr:nth-child(odd) {
    background-color: #fcfcfc;
}

.ycm-packages-table tbody tr:hover {
    background-color: #e6f7ff;
}

.ycm-select-package-btn {
    /*background-color: #28a745;*/      /* Green for "Get Connected" */
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.ycm-select-package-btn:hover {
    background-color: #218838;
}


/* Modal Styles */
.ycm-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.ycm-modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.ycm-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ycm-close-button:hover,
.ycm-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Enquiry form inside modal */
#ycm-enquiry-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#ycm-enquiry-form input[type="text"],
#ycm-enquiry-form input[type="email"] {
    width: calc(100% - 22px); /* Adjust for padding and border */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ycm-enquiry-form button {
    background-color: #007bff; /* Blue for submit */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#ycm-enquiry-form button:hover {
    background-color: #0056b3;
}

#ycm-enquiry-status {
    margin-top: 15px;
    font-size: 0.9em;
    font-weight: bold;
}
.features-list{
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin: 30px auto 25px;
    max-width: 240px;
	min-height:80px !important;
}
.features-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.features-list li span svg{
    height: 14px;
    width: 14px;
    fill: #194997;
}
.features-list li .feature-list-icon{
    display: flex;
    align-items: center;
}
.features-list li .feature-list-text{
    font-size: 16px;
    font-weight: 400;
    color: #357FB8;
	text-align:left;
}

@media (max-width:767px){
	.features-list{
		min-height: auto;
	}
}