/* ============================================
   ESTILOS PARA BUSCADOR MODERNIZADO
   ============================================ */

.search-results-container {
    /*background: #fff;*/
    /*padding: 20px;*/
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ============================================
   1. COINCIDENCIA EXACTA
   ============================================ */
.exact-match-section {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border-radius: 10px;
    border-left: 5px solid #FFD700;
}

.exact-match-section h2 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #333;
}

.exact-match-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.exact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.exact-icon i {
    font-size: 28px;
    color: white;
}

.exact-details {
    flex: 1;
}

.exact-details h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
}

.exact-details h3 a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.exact-details h3 a:hover {
    color: #FF6600;
}

.exact-artist {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.exact-artist a {
    color: #666;
    text-decoration: none;
}

.exact-artist a:hover {
    color: #FF6600;
}

.separator {
    margin: 0 8px;
    color: #ccc;
}

.exact-actions {
    margin-left: 20px;
    font-size: 15px;
}

.btn-play {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

/* ============================================
   2. ARTISTAS COMPACTOS (Horizontal Pills)
   ============================================ */
.artists-compact-section {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.artists-compact-section h2 {
    font-size: 16px;
    color: #333;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.artists-compact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.artist-compact-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00AEEF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.artist-compact-item:hover {
    background: #00AEEF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3);
}

.artist-compact-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00AEEF 0%, #0088CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.artist-compact-icon i {
    font-size: 12px;
    color: white;
}

.artist-compact-item:hover .artist-compact-icon {
    background: white;
}

.artist-compact-item:hover .artist-compact-icon i {
    color: #00AEEF;
}

.artist-compact-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.artist-compact-info h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.artist-compact-item:hover .artist-compact-info h3 {
    color: white;
}

.artist-compact-meta {
    font-size: 12px;
    color: #666;
    font-weight: normal;
}

.artist-compact-item:hover .artist-compact-meta {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   3. LISTA DE CANCIONES
   ============================================ */
.search-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6600;
}

.search-header h2 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.songs-results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.song-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.song-result-item:hover {
    background: #fff8f0;
    border-left-color: #ff6600;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.1);
}

.song-number {
    font-size: 20px;
    font-weight: bold;
    color: #ff6600;
    min-width: 45px;
    text-align: center;
}

.song-details {
    flex: 1;
    margin-left: 15px;
}

.song-name {
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.song-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.song-name a:hover {
    color: #ff6600;
}

.song-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: #666;
}

.meta-item i {
    color: #00AEEF;
    margin-right: 5px;
}

.meta-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-item a:hover {
    color: #ff6600;
}

/* SIN RESULTADOS */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border-radius: 8px;
}

.no-results-icon {
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

.search-term {
    color: #ff6600;
    font-weight: bold;
}

.suggestions {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 500px;
    text-align: left;
    border-left: 4px solid #00AEEF;
}

.suggestions h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: #333;
}

.suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.suggestions li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #67b800;
    font-weight: bold;
}

.request-song {
    margin-top: 30px;
}

.request-song p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.btn-request {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #ff8533 0%, #ff6600 100%);
}

/* ============================================
   SIDEBAR DERECHA
   ============================================ */
.sidebar-ad {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 600;
}

.sidebar-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	font-size: 14px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Búsquedas Populares */
.popular-searches {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popular-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.popular-tag:hover {
    background: #fff8f0;
    border-left-color: #FF6600;
    transform: translateX(3px);
}

.popular-tag i {
    color: #FF6600;
    margin-right: 8px;
}

.tag-count {
    background: #FF6600;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Géneros Destacados */
.genre-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.genre-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: #fafafa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.genre-item:hover {
    background: #f0f8ff;
    border-left-color: #00AEEF;
    transform: translateX(3px);
}

.genre-item i {
    color: #00AEEF;
    margin-right: 10px;
    font-size: 14px;
}

.genre-name {
    flex: 1;
    font-weight: 600;
}

.genre-count {
    background: #00AEEF;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Tips de Búsqueda */
.search-tips {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.tip-item i {
    color: #67b800;
    font-size: 14px;
}

/* Botón Solicitar */
.request-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    border-radius: 8px;
    border: 2px dashed #FF6600;
}

.request-box i {
    font-size: 32px;
    color: #FF6600;
    margin-bottom: 10px;
}

.request-box h4 {
    font-size: 16px;
    color: #333;
    margin: 10px 0 5px 0;
}

.request-box p {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
}

.btn-sidebar-request {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sidebar-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

#cuerpobus {
  display: grid;
  grid-template-columns: 69.5% 30%;
  gap: 5px;
  background: linear-gradient(to bottom, #e9e9e9 0%, transparent 100%) top / 100% 150px no-repeat, #ffffff;
  background-repeat: repeat-x;
  /*font-size: 0px;*/
  box-sizing: border-box;
  padding: 5px;
  /*border: 1px solid #cacaca;*/
}

#cuerpobus .izquierdab{/*font-size:0px;*/border: 1px solid #cacaca;padding: 5px;margin: 0px 5px 5px 0px;}
#cuerpobus .derechab{/* background:#fff; */box-sizing:border-box;/* padding:10px; */}
