/* FUNDO TRANSPARENTE PARA ITENS E DADOS DAS PAGINAS estilo
   CRAFT E CENTER
*/

.bgitem {
    background: linear-gradient(45deg, #22242547, #6c787d99);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 250px; */
    min-height: 280px;
    transition: 0.3s ease;
    justify-content: center;
}

.conteudostatus h4 img{
    margin-right: 5px; 
    box-shadow: 3px 4px 9px #01010169;

}

.bgtransparente{
background: linear-gradient(45deg, #22242547, #6c787d99);
    border-radius: 20px;
    padding: 4px 10px;
    box-shadow: 8px 7px 14px #01010169;
    height: 100%;
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    
    align-content: center;
        align-items: center;
}

.bgtransparente div p, .bgtransparente div span{
color: yellow;
    text-shadow: #000 1px -1px 2px, #000 -1px 1px 2px, #000 1px 1px 2px, #000 -1px -1px 2px;
  
}


.moveinfo:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* BOTOES ESTILO CRAFT COM CLIQUE EM VERDE */

.button-wrapper button {
    padding: 6px 14px;
    border: none;
    border-radius: 8px;
    background-color: rgb(85, 145, 214);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.button-wrapper button:hover {
    background-color: #45a049;
}


#infomenu {
    z-index: 1000;
 
}
.moveinfo, #infomenu-titlebar {
  cursor: move;
}


/* botao de ventos ATIVO*/


.events-drawer-closed {
    width: 50px;
    height: 50px;
    background: linear-gradient(197deg, #3c5ce9 0%, #4581d9 100%);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.events-drawer-open {
    width: 280px;
    min-height: 200px;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 2px solid #039bf3;
    transition: all 0.3s ease;
}

.events-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.events-drawer-open .events-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.events-toggle:hover {
    transform: scale(1.1);
}

.events-content {
    display: none;
    padding: 50px 15px 15px 15px;
    color: white;
}

.events-drawer-open .events-content {
    display: block;
}

.events-content h6 {
    margin: 0 0 15px 0;
    color: #039bf3;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #039bf3;
    padding-bottom: 8px;
}

.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.event-item:hover {
    background: rgba(255,255,255,0.1);
}

.event-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.event-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 4px;
}

.shiny-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.boss-icon {
    background: linear-gradient(45deg, #FF4444, #CC0000);
}

.event-item span {
    font-size: 12px;
    font-weight: bold;
}

.no-events {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

@media (max-width: 768px) {
    #events-drawer-container {
        right: 5px;
        transform: translateY(-50%) scale(0.8);
    }
    
    .events-drawer-closed {
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }
    
    .events-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .events-drawer-open {
        width: 220px;
        min-height: 180px;
    }
    
    .events-drawer-open .events-toggle {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .events-content {
        padding: 45px 12px 12px 12px;
    }
    
    .events-content h6 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .event-item {
        padding: 6px;
        margin-bottom: 8px;
    }
    
    .event-item span {
        font-size: 11px;
    }
    
    .event-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        font-size: 14px;
    }
    
    .event-item img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
}


