/* Layout da página de Coleções */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #1F2326 !important;
    border-radius: 5px;
}
h1 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #E0E0E0 !important;
}

/* Tabela de Coleções */
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th, .table td {
    padding: 12px;
    
    text-align: left;
}
.table th {
    background-color: rgba(224, 224, 224, 0.1) !important;
}

/* Imagem da coleção */
.collection-img {
    width: 70px;
    height: auto;
    object-fit: cover;
    border: 1px solid #eee;
    vertical-align: middle;
    padding: 5px;
    border-radius: 2px;
    background-color: #fff;
}

/* Logo da loja */
.store-logo-img {
    width: 100px;
    height: auto;
    object-fit: contain;
}
.no-collections {
    text-align: center;
    color: #888;
}

/* Estilos condicionais para o status (aplicados no <span>) */
.status-text.ativo {
    background-color: #d4f8d4;
    color: #006400;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}
.status-text.inativo {
    background-color: #ffe5b4;
    color: #fe5000;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Estilos para os botões de ação */
.text-right {
    text-align: right;
}
.btn {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    margin: 2px;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}
.btn-edit {
    background-color: #2BC4C3;
}
.btn-edit:hover {
    background-color: #26A6A0;
}
.btn-copy {
    background-color: #6c757d;
}
.btn-copy:hover {
    background-color: #5a6268;
}
.btn-view {
    background-color: #17a2b8;
}
.btn-view:hover {
    background-color: #138496;
}
.btn-delete {
    background-color: #dc3545;
}
.btn-delete:hover {
    background-color: #c82333;
}

/* Altura das linhas da tabela */
tr {
    height: 70px;
}