/* Estilos específicos para a página de detalhes do servidor */

/* Remover fundos brancos das tabelas */
.table {
    background-color: transparent !important;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ddd;
    padding: 10px;
}

/* Ajustar cores dos painéis */
.panel,
.blog-content,
.blog-single,
.g-content {
    background-color: transparent !important;
}

.panel-default {
    border-color: rgba(255, 255, 255, 0.1);
}

.panel-default > .panel-heading {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.panel-title {
    color: #ffffff;
}

.panel-body,
.blog-content,
.server-status {
    background-color: rgba(0, 0, 0, 0.1) !important;
    color: #ddd;
}

/* Ajustar cores das informações do servidor */
.blog-post {
    background-color: transparent !important;
}

.blog-single {
    border-color: rgba(255, 255, 255, 0.1);
}

.server-status {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

/* Ajustar cores da lista de mods */
.list-group-item {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

.list-group-item:hover {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Ajustes adicionais para melhorar a legibilidade */
.blog-content h3 {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-top: 20px;
}

.label {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Melhorar contraste do texto */
.blog-content p, 
.blog-content table,
.list-group-item {
    color: #ddd;
}

/* Forçar remoção de fundos brancos em todos os elementos da tabela */
tr, th, td {
    background-color: transparent !important;
}

/* Estilo para linhas da tabela */
.table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Estilo para células th */
.table th {
    font-weight: bold;
    color: #fff;
}

/* Estilo para o status do servidor na barra lateral */
.server-status-small {
    margin-top: 5px;
}

.server-status-small .label {
    font-size: 11px;
    padding: 3px 6px;
}

/* Estilo para os botões de filtro */
.filter-buttons,
.filter-buttons-group {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-buttons .btn,
.filter-buttons-group .btn {
    margin-bottom: 5px;
    text-align: center;
    min-width: 100px;
    transition: all 0.2s ease;
}

.filter-buttons .btn:hover,
.filter-buttons-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Cores personalizadas para os botões */
.btn-primary {
    background-color: #337ab7;
}

.btn-success {
    background-color: #5cb85c;
}

.btn-info {
    background-color: #5bc0de;
}

.btn-warning {
    background-color: #f0ad4e;
}

.btn-danger {
    background-color: #d9534f;
}

.btn-default {
    background-color: #444;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
}