/* Estilos para a barra de pesquisa */
.search-cursos-container {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    border-radius: 25px;
    overflow: visible;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999999;
}

/* Ajuste para header */
.zp_search_header {
    max-width: 250px;
    margin: 0;
    box-shadow: none;
    border-radius:0;
    border-bottom:1px solid #eceded;
}
.zp_search_header .search-form{
    border-radius:0;    
}
.zp_search_header .search-button{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color:#FFFFFF;
}
.zp_search_header .search-button i::before{
    color: #ff9b23;
}

/* Formulário de pesquisa */
.search-form {
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
}

/* Input de pesquisa */
.search-cursos {
    flex: 1;
    height: 48px;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    background-color: #ffffff;
    outline: none;
    border-radius: 25px 0 0 25px;
    cursor: text!important;
}

/* Botão de pesquisa */
.search-button {
    width: 50px;
    height: 48px;
    background: #ff9b23;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    outline: none!important;
    border: none;
    box-shadow: none;    
}

.search-button i::before {
    font-family: Ionicons;
    content: "\f4a5";
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Estilizar os resultados da pesquisa */
.search-results-container {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 999999;
    padding: 0;
    text-align: left;
    display: none;
}

/* Ajuste para header */
.zp_search_header .search-results-container {
    top: 45px;
}

/* Itens da pesquisa */
.search-item,
.no-results-item {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: left;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background: #ffffff;
    border-radius: 5px;
    margin: 5px;
    width: calc(100% - 10px);
    cursor: pointer;
}

p.no-results-item {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    text-align: left;
    padding: 10px;
}

.search-item:last-child,
.no-results-item:last-child {
    border-bottom: none;
}

.search-item a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
}

.search-item:hover {
    background: #f0f0f0;
}

/* Estilo para a mensagem de "Sem resultados" */
.no-results-item {
    color: #333;
    font-style: normal;
    cursor: default;
}

/* Certificar que os resultados aparecem corretamente */
.search-results-container.show {
    display: block;
}
header#masthead .thim-search-wrapper .zp_search_header .search-form:after{
    content:none!important;
}



body .learn-press-message, 
body .message-success, 
body .message-error, 
body .message-info, 
body .message-warning{
    color: #000000!important;
    font-size: 16px;
    background-color: #ffffff!important;
}







