/**
#################################################################
Rename this file to theme.css if you want to enable theme and customize it
 **/

body.layout-dark:before, .layout-dark {
    background: rgb(0, 0, 0) !important;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(30, 30, 30, 1) 50%, rgba(0, 0, 0, 1) 100%) !important;
}

body.layout-dark .header-container {
    background: rgb(139, 0, 0) !important;
    background: linear-gradient(90deg, rgba(139, 0, 0, 1) 0%, rgba(220, 20, 60, 1) 50%, rgba(139, 0, 0, 1) 100%) !important;
}

.sidebar-theme {
    background: rgb(0, 0, 0) !important;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(30, 30, 30, 1) 50%, rgba(0, 0, 0, 1) 100%) !important;
}

.theme-brand {
    background: rgb(0, 0, 0) !important;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(30, 30, 30, 1) 50%, rgba(0, 0, 0, 1) 100%) !important;
    border: none !important;
}

.card {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(60, 60, 60, 0.95) 50%, rgba(0, 0, 0, 1) 100%) !important;
    border-radius: 8px !important;
    color: #fff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

body.layout-dark #sidebar ul.menu-categories li.menu.active > .dropdown-toggle {
    background: linear-gradient(90deg, rgba(139, 0, 0, 1) 0%, rgba(220, 20, 60, 1) 50%, rgba(139, 0, 0, 1) 100%) !important;
}

/**
 Text COLOR
 **/
body {
    color: #fff !important;
}

.header-container, .card-header {
    color: #fff !important;
}

a {
    color: #ff0000 !important;
}

a:hover {
    color: #ff6347 !important;
}

/**
 Buttons
 **/
button {
    background-color: #b22222 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

button:hover {
    background-color: #8b0000 !important;
}

/**
 Inputs
 **/
input, textarea {
    background-color: #1c1c1c !important;
    color: #fff !important;
    border: 1px solid #b22222 !important;
    border-radius: 4px !important;
    padding: 10px !important;
}

input::placeholder, textarea::placeholder {
    color: #a9a9a9 !important;
}

input:focus, textarea:focus {
    border-color: #ff0000 !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5) !important;
}