body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(to right, #1a1123, #261b35);
    color: #e8ddff;
}

.admin-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(30, 22, 50, 0.9);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(150, 120, 230, 0.3);
    backdrop-filter: blur(6px);
}

.admin-container h2 {
    text-align: center;
    color: #d5bfff;
    font-size: 2em;
    margin-bottom: 30px;
    text-shadow: 0 0 5px #6a49c2;
}

.btn-roxo {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8e70dc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-roxo:hover {
    background-color: #a985f5;
}

.herbarium-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
    background-color: rgba(255, 255, 255, 0.05);
}

.herbarium-table th, .herbarium-table td {
    border: 1px solid #5e4c8a;
    padding: 10px;
    text-align: center;
    color: #dcd4ff;
}

.herbarium-table th {
    background-color: #2b1e4c;
    color: #e3ddff;
    text-shadow: 0 0 3px #9977ff;
}

.herbarium-table img {
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(160, 130, 255, 0.2);
}

.herbarium-table a {
    color: #ab9eff;
    text-decoration: none;
    font-weight: bold;
}

.herbarium-table a:hover {
    text-decoration: underline;
    color: #d5c7ff;
}
.miniatura {
    width: 60px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(160, 130, 255, 0.2);
    transition: transform 0.3s ease;
}

.miniatura:hover {
    transform: scale(1.2);
}
.botao-voltar {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6e59c5;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px rgba(150, 120, 230, 0.3);
    margin-top: 20px;
}

    .botao-voltar:hover {
        background-color: #8e70dc;
    }

