.admin-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

.admin-btn-primary {
    color: #fff;
    background-color: #c0a080;
    border-color: #c0a080;
}

.admin-btn-primary:hover {
    color: #fff;
    background-color: #a88c6c;
    border-color: #a88c6c;
}

.admin-btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.admin-btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.admin-btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-menu a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-menu a.active {
    color: #fff;
    background-color: #c0a080;
}

.sidebar-submenu a {
    padding-left: 3rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.btn-link {
    font-weight: 400;
    color: #c0a080;
    text-decoration: none;
    cursor: pointer;
}

.btn-link:hover {
    color: #a88c6c;
    text-decoration: underline;
}

.admin-modal-close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.admin-modal-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

.toggle-sidebar {
    background: transparent;
    border: none;
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
}

.dropdown-toggle img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Garantir que todos os elementos clicáveis tenham cursor pointer */
a, button, .btn, [role="button"], [type="button"], [type="submit"], [type="reset"] {
    cursor: pointer !important;
}
