/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

.navbar-main, ul.top-nav>li.primary-action>a.btn, section#home-banner {
    background-color: #0f0f23;
}

.colorfeher {
color: white!important;
}



.card {
padding: 4rem!important;
}

.card-sidebar {
padding:15px!important;
}

.hozzaferesul {
margin-left: 15px!important;
}

.header-lined h1 {
  color:#0f0f23!important;
}
section#main-menu {
    z-index: 1000;
    position: relative;
}

.invoice-col img {
    width:100px!important;
    height:100px!important;
}

section#main-body {
/*    z-index: 10;*/
    position: relative;
}

.tiles .tile, .tiles .tile:hover {
   border: 1px solid white!important;
   background-color: #1d1d21;
   border-radius: 10px; 
}

.div-service-name span {
    color: #101013
}

.tile .stat {
    color: white;
}

.client-home-panels .panel>.panel-heading {
    margin: 10px;
}

.client-home-panels .panel>.panel-heading .panel-title {
    align-items: center;
    align-content: center;
}

.navbar-nav>li>.dropdown-menu {
    z-index:1000000
}

#Secondary_Navbar-Account .dropdown-toggle, .navbar-main li.account {
    background: none;
    color: #2fb26c;
    font-weight: 600;
}

:root {
    /* Színek */
    --color-primary: #2dd4bf;
    --color-primary-dark: #0d9488;
    --color-background: #0f0f23;
    --color-surface: #1a1a2e;
    --color-text: #fff;
    --color-muted: #6b7280;

    /* Állapot színek */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Árnyékok */
    --shadow-md: 0 4px 6px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);

    /* Radius */
    --radius: 12px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    z-index:100;
    font-family: system-ui, sans-serif;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
/*    color: var(--color-text);*/ 
    line-height: 1.6;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #27272a;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
}

.navbar a {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}

.navbar a:hover {
    background: rgba(45, 212, 191, 0.1);
    color: var(--color-primary);
}

/* Cards */
.card {
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-background);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5eead4, var(--color-primary));
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: rgba(15, 15, 35, 0.95);
    border-top: 1px solid #27272a;
    color: var(--color-muted);
    text-align: center;
}

/* Animációk */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.card, .navbar {
    animation: fadeInUp 0.6s ease-out;
}