
body {
    font-family: 'Arial', sans-serif;
    background: #3c3836;
    margin: 0;
    padding: 0;
}
.radio-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background: #fff;
}
@media only screen and (max-width:1366px){
    .radio-container {
        max-width: 960px;
        margin: 0px auto;
        padding: 4px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        background: #fff;
    }
}
.hero-banner{
    display:flex;
    flex-direction:column;
    align-content:center;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    width:100%;
    max-width:1200px;
    height:auto;
    padding:0px;
    margin:auto;
    overflow:hidden;
}
div .hero-banner img{
    width:100%;
    max-width:1200px;
    height:100%;
}
.player-status {
    margin: 0;
    padding: 4px;
    border-radius: 0px;
    width: 100%
}
.now-playing {
    font-weight: bold;
    color: #2196F3;
}
.status-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}
.status-online {
    background-color: #15DD1E;
}
.status-offline {
    background-color: #f44336;
}
audio {
    width: 100%;
    margin: 0px;
}
.unmute-button {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px auto;
    display: block;
    font-size: 16px;
}
.unmute-button:hover {
    background: #1976D2;
}
.unmute-message {
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 5px;
    color: #1976D2;
}
.history-title {
    margin-top: 8px;
    border-bottom: 4px solid #06B3F7;
    padding-bottom: 10px;
    color: #333;
}
}
.song-history {
    margin-top: 20px;
}
.song-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.song-item:hover {
    background-color: #f9f9f9;
}
.song-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: cover;
}
.song-info {
    flex-grow: 1;
}
.song-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.song-artist {
    color: #666;
    font-size: 0.9em;
}
.amazon-link {
    background: #ff9705;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8em;
    white-space: nowrap;
}
.amazon-link:hover {
    background: #ff8605;
}
.current-song {
    display:flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    background-color: #a3d2f2 !important;
    border-left: 4px solid #2196F3 !important;
}
.current-song {
    overflow: hidden !important;
    position: relative;
    height: 140px !important;
}
    
.song-item:nth-child(odd) {
        background-color: #fff;
    }
.song-item:nth-child(even) {
        background-color: rgb(247, 246, 246);
    }
.current-song img {
    position: relative;
    top: -150%;  /* Comienza arriba, fuera del div */
    left: 64px;
    transform: translateX(-50%);
    animation: slideDown 5s ease-in-out infinite;
}
.current-song .song-info{
    margin-left:4px;
}
@keyframes slideDown {
    0% { top: -150%; }  /* Imagen fuera arriba */
    10% { top: 50%; transform: translate(-50%, -50%); }  /* Baja en 0.4s */
    90% { top: 50%; transform: translate(-50%, -50%); }  /* Se mantiene en 50% por 4s */
    100% { top: 150%; }  /* Sube y desaparece para reiniciar */
}
@media only screen and (max-width:600px){
   .song-item {
        display:flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
    }
}
.current-song img{
    width:130px !important;
    height:130px !important;
    border:1px solid #ffffff;
    box-shadow:0px 2px 10px rgba(0,0,0,2);
    padding:0px;
    border-radius: 50%;
}
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.history-count {
    background: #06B3F7;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight:400;
}
    .song-image {
        margin-bottom: 10px;
    }
    .link-row-amazon{
        position:relative;
        float: right;
        margin-top:4px;
    }
    .amazon-link {
        margin-top: 10px;
    }
}
/************************/
.layout-container-fluidfull {
        width: 100%;
        padding: 0px;
        display: block;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        gap: 7px;
        margin: 4px auto;
        box-sizing: border-box;
    }
    .layout-column:nth-child(1) {
        width:50%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .layout-column:nth-child(2) {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .layout-column:nth-child(3) {
        width: 25%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    @media only screen and (max-width:800px){
        .layout-column:nth-child(1) {
        width: 70%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .layout-column:nth-child(2) {
        width: 1%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .layout-column:nth-child(2) {
        width: 29%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    }
    .layout-row {
        height: 50px;
        border-radius: 0px;
    }
    .layout-row-artinfo {
        height: 90px;
        background-color: #f6f6f6;
        border: 0px solid #f4f7ff;
        border-radius: 0px;
    }
    .layout-row-artinfo img{
        width:300px;
        height:300px;
    }
    .status-info{
        font-size:0.750rem !important;
    }
    .status-info-row{
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        height: 32px;
        align-items: center;
    }

    .blinking-steps {
    animation: blink-steps 0.6s steps(2, start) infinite;
    }
    @keyframes blink-steps {
    0% { opacity: 1; }
    50% { opacity: 0.15; }
    100% { opacity: 1; }
    }

    /******** Row Flex *************/
.row-flex{
    display:flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    margin-left:auto;
    margin-right:auto;
}
@media only screen and (max-width: 1120px){
    .row-flex{
        align-items: inherit;
    }
    }
/******** Row Flex *************/
/******** Col Flex *************/
.col-flex{
    display:flex;
    flex-direction: row;
    align-content: center;
    /*align-items: inherit;*/
    justify-content: center;
    margin-left:auto;
    margin-right:auto;
}
@media only screen and (max-width: 1120px){
    .col-flex{
        display:flex;
        flex-direction: column;
        align-content: center;
        align-items: inherit;
        justify-content: center;
        margin-left:auto;
        margin-right:auto;
        text-align: center; 
    }
    }
/******** Col Flex *************/