/* Google Custom Search Styles */
.gcs-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
}

.gcs-search-form {
    display: flex;
    margin-bottom: 30px;
}

.gcs-search-input {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.gcs-search-button {
    padding: 10px 20px;
    background: #0073aa !important;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
}

.gcs-search-button:hover {
    background: #005d8c;
}

.gcs-results-count {
    color: #666;
    margin-bottom: 20px;
}

.gcs-result-item {
    margin-bottom: 30px;
}

.gcs-result-title {
    margin: 0 0 5px 0;
}

.gcs-result-title a {
    color: #1a0dab;
    text-decoration: none;
}

.gcs-result-title a:hover {
    text-decoration: underline;
}

.gcs-result-url {
    color: #006621;
    font-size: 14px;
    margin-bottom: 5px;
    word-break: break-all;
}

.gcs-result-snippet {
    color: #545454;
    margin: 0;
}

.gcs-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}

.gcs-pagination a,
.gcs-pagination span {
    padding: 8px 12px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #0073aa;
}

.gcs-pagination a:hover {
    background: #f5f5f5;
}

.gcs-pagination .current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.gcs-no-results {
    color: #666;
    font-size: 18px;
}

.gcs-error {
    color: #dc3232;
    padding: 10px;
    background: #f7f7f7;
    border-left: 4px solid #dc3232;
}


.search-container {
    width: 100%;
    max-width: 550px;
}

.search-bar {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 6px 15px 6px 45px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    
}

.search-input:focus {
    outline: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e8e93;
    pointer-events: none;
	width:30px;
	height:30px;
}

.search-input::placeholder {
    color: #8e8e93;
}