/* Style Général 2005/2008 */
body {
    font-family: Arial, sans-serif;
    background-color: #F3F3F3;
    color: #333333;
    margin: 0;
    padding: 15px;
}

#masthead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 15px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    padding: 10px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    font-family: 'Arial Black', sans-serif;
    text-align: center;
    line-height: 0.9;
}

/* L'EFFET DE LUMIÈRE GLOSSY STYLE IMAGE_DCD16C.PNG */
.logo .blue-box {
    display: block; 
    margin-top: 5px;
    color: white;
    padding: 6px 24px;
    border-radius: 18px; 
    font-size: 36px;
    position: relative;
    background-color: #0099e5; 
    
    /* Dégradé de reflet blanc supérieur */
    background-image: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.2) 45%, 
        rgba(255, 255, 255, 0) 50%
    );
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.15);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.search-bar input {
    padding: 5px;
    font-size: 14px;
    width: 250px;
    border: 1px solid #999999;
}

.yt-button {
    background: linear-gradient(#FFFFFF, #EAEAEA);
    border: 1px solid #CCCCCC;
    border-bottom-color: #B5B5B5;
    padding: 5px 12px;
    font-size: 13px;
    cursor: pointer;
    font-weight: bold;
}

.container {
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 30%;
    min-width: 260px;
}

.main-content {
    width: 70%;
}

.box-header {
    background-color: #EAEAEA;
    border: 1px solid #CCCCCC;
    padding: 6px 10px;
    font-weight: bold;
    font-size: 14px;
}

.user-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #CCCCCC;
    border-top: none;
    background-color: #FFFFFF;
    max-height: 500px;
    overflow-y: auto;
}

.user-item {
    padding: 10px;
    border-bottom: 1px dotted #CCCCCC;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-item:hover {
    background-color: #BAE3FF;
}

.user-item.active {
    background-color: #FFE082;
}

.mini-avatar {
    width: 32px;
    height: 32px;
    border: 1px solid #999;
}

.user-info .nickname {
    font-weight: bold;
    color: #0033CC;
    text-decoration: none;
}

.user-item:hover .nickname {
    text-decoration: underline;
}

.user-info .role-tag {
    font-size: 11px;
    color: #666;
    display: block;
}

.profile-box {
    border: 1px solid #CCCCCC;
    border-top: none;
    padding: 20px;
    background-color: #FFFFFF;
    min-height: 300px;
}

.no-selection {
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 50px;
}

.profile-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #CCC;
    padding-bottom: 15px;
}

.big-avatar {
    width: 80px;
    height: 80px;
    border: 1px solid #666;
}

.profile-title h2 {
    margin: 0 0 5px 0;
    color: #0033CC;
}

.discord-tag {
    color: #666;
    font-size: 13px;
}

.info-row {
    margin-bottom: 10px;
    font-size: 14px;
}

.info-label {
    font-weight: bold;
    color: #555;
    width: 140px;
    display: inline-block;
}

.roles-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.discord-role {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: white;
    font-weight: bold;
    border: 1px solid rgba(0,0,0,0.2);
}
/* Sélecteur de langue en haut à droite */
.language-selector {
    font-size: 12px;
    color: #555;
}

.language-selector select {
    font-size: 12px;
    padding: 2px;
    border: 1px solid #CCC;
    background: #FFF;
    font-family: Arial, sans-serif;
}

/* Badge APP style rétro-moderne pour les Bots */
.app-badge {
    background-color: #5865F2; /* Bleu flou Discord */
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
    line-height: 11px;
}
