
.swal2-container {
    z-index: 20000 !important;
}

.aspxbase {
            font-family: 'Roboto', sans-serif;
             font-variant: small-caps;
        }
        body {
            font-family: 'Roboto', sans-serif;
        }
        .watermark-container {
            position: relative;
            background-image: url('watermark.jpg'); /* A kép URL-jét cseréld ki a sajátodra */
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.1; /* Állítsd be az átlátszóságot, hogy vízjel hatást érj el */
            position: relative;
        }
        .header {
            width: 100%;
            height: 10vh;
            background-color: #B8E5F8; /* világoskék háttérszín */
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3px;
            border-bottom: 2px solid #ccc;
        }



        .logo {
            width: 170px;
            height: 70px;
        }

        .title {
            flex-grow: 1;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            font-variant: small-caps;
        }

        .right-text {
            display: flex;
            align-items: center;
        }

        .sysadmin {
            margin-right: 20px;
            font-size: 16px;
            font-variant: small-caps;
        }

        .logout-icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

        .sidebar {
            height: calc(90vh - 2px);
            width: 100px; /* vékonyabb sidebar */
            position: fixed;
            top: 10vh;
            left: 0;
            background-color: #f1f1f1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 20px;
            border-right: 2px solid #ccc;
            padding-left: 20px; /* nagyobb padding */
            padding-right: 20px; /* nagyobb padding */
        }

        .sidebar-icon-container {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px;
            margin: 5px 0; /* kisebb hely az ikonok és badge-ek között */
            cursor: pointer;
            position: relative;
        }

        .sidebar-icon {
            width: 48px;
            height: 48px;
            background-color: transparent;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

            .sidebar-icon img {
                width: 46px;
                height: 46px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .sidebar-icon:hover {
                background-color: #d1d1d1;
            }

        .sidebar-badge {
            position: absolute;
            top: 5px; /* Állítsd be az értéket, hogy megfelelően lógjon le */
            left: 50px; /* Igazítsd be az ikon bal felső sarkához */
            transform: translate(-50%, -50%);
            border-radius: 50%;
            color: white;
            padding: 5px;
            font-size: 12px;
            text-align: center;
            min-width: 20px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid black;
            margin: 2px; /* 2 pixel margin hozzáadása */
        }

        .sidebar-badge-yellow {
            background-color: #ffeb3b;
            color: #000;
        }

        .sidebar-badge-red {
            background-color: #f44336;
        }

        .tooltip {
            position: relative;
            display: inline-block;
        }

            .tooltip .tooltiptext {
                visibility: hidden;
                width: 120px;
                background-color: #555;
                color: #fff;
                text-align: center;
                border-radius: 6px;
                padding: 5px;
                position: absolute;
                z-index: 1;
                top: 150%; /* az ikonok alatt kezdődik */
                left: 10px; /* bal széle 10 pixel-le jobbra */
                transform: translateX(-50%);
                opacity: 0;
                transition: opacity 0.3s;
                font-size: 10px; /* kisebb betűméret */
            }

            .tooltip:hover .tooltiptext {
                visibility: visible;
                opacity: 1;
            }

        .main {
            margin-left: 160px; /* vékonyabb sidebar margin */
            padding: 20px;
            width: 70%; /* tartalom szélessége 70% */
            margin-top: 20px; /* nagyobb margin a fő címsor alatt */
        }
        .main-content {
            margin-left: 100px; /* Width of sidebar + some padding */
            padding: 2px;
            width:90%;
        }
        .card-container {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 oszlopos elrendezés */
            gap: 20px;
            width: 100%;
        }

        .card-container-fullwidth {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

        .card {
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
            cursor: pointer;
            width: 100%; /* teljes szélesség */
        }

        .card-header {
            width: 100%;
            padding: 10px;
            border-bottom: 1px solid #ccc;
            border-radius: 8px 8px 0 0;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            font-variant: small-caps;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .card-body {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 10px;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            cursor: pointer;
        }

        .badge {
            border-radius: 50%;
            padding: 5px;
            color: white;
            display: inline-block;
            text-align: center;
            width: 20px;
            height: 20px;
            line-height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2px; /* 2 pixel margin hozzáadása */
            border: 1px solid black;
        }

        .badge-yellow {
            background-color: #ffeb3b;
            color: #000;
        }

        .badge-red {
            background-color: #f44336;
        }

        .w3-modal-content {
            border-radius: 8px;
        }

        .project-table, .notification-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

            .project-table th, .project-table td, .notification-table th, .notification-table td {
                padding: 8px;
               
                border: 1px solid #ccc;
            }
        td {
           /* text-align: left; */
        }
            .project-table th, .notification-table th {
                background-color: #f1f1f1;
                font-weight: bold;
                font-variant: small-caps;
            }

            .grid_header 
            {
                background-color: #f1f1f1;
                font-weight: bold;
                font-variant: small-caps;
            }
            .project-table tr:nth-child(even), .notification-table tr:nth-child(even) {
                background-color: #f9f9f9;
            }

            .project-table tr:nth-child(odd), .notification-table tr:nth-child(odd) {
               /* background-color: #ffffff; */
            }

        .modal-header {
            text-align: center;
            background-color: #4CAF50;
            color: white;
            padding: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-variant: small-caps;
        }

            .modal-header img {
                margin-right: 10px;
            }

        .form-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
        }

            .form-container label {
                font-weight: bold;
                font-variant: small-caps;
            }

            .form-container input {
                padding: 8px;
                border: 1px solid #ccc;
                border-radius: 4px;
            }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

            .form-actions img {
                cursor: pointer;
            }

        .notification-header {
            width: 100%;
            padding: 10px;
            background-color: #ff5722;
            color: white;
            font-size: 24px;
            text-align: center;
            font-variant: small-caps;
            border-radius: 8px 8px 0 0;
        }
        .attendance-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

            .attendance-table th, .attendance-table td {
                padding: 8px;
                text-align: center;
                border: 1px solid #ccc;
            }

            .attendance-table th {
                background-color: #f1f1f1;
                font-weight: bold;
                font-variant: small-caps;
            }

            .attendance-table tr:nth-child(even) {
                background-color: #f9f9f9;
            }

            .attendance-table tr:nth-child(odd) {
                background-color: #ffffff;
            }

        .attendance-modal-header {
            text-align: center;
            background-color: #4CAF50;
            color: white;
            padding: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-variant: small-caps;
        }

            .attendance-modal-header img {
                margin-right: 10px;
            }
            .aspx_grid_header
            
            {
                background-color: #f1f1f1;
            font-family: Roboto, sans-serif;
             font-size: 15px;
            font-variant-alternates: normal;
            font-variant-caps: small-caps;
            font-variant-east-asian: normal;
            font-variant-ligatures: normal;
            font-variant-numeric: normal;
            font-variant-position: normal;
            font-weight: 700;
            line-height: 22.5px;
            text-align: center;
            text-indent: 0px;
            text-size-adjust: 100%;
            vertical-align middle;
        }
            .dxgvDataRow
            {
            font-family: Roboto, sans-serif;
             font-size: 15px;

            }
            .dxgvHeader
             {
                background-color: #f1f1f1;
            font-family: Roboto, sans-serif;
             font-size: 15px;
            font-variant-alternates: normal;
            font-variant-caps: small-caps;
            font-variant-east-asian: normal;
            font-variant-ligatures: normal;
            font-variant-numeric: normal;
            font-variant-position: normal;
            font-weight: 700;
            line-height: 22.5px;
            text-align: center;
            text-indent: 0px;
            text-size-adjust: 100%;
            vertical-align middle;
        }
            .grid_header {
                background-color: rgb(241, 241, 241);
border-bottom-color: rgb(204, 204, 204);
border-bottom-style: solid;
border-bottom-width: 0.8px;
border-collapse: collapse;
border-image-outset: 0;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
border-left-color: rgb(204, 204, 204);
border-left-style: solid;
border-left-width: 0.8px;
border-right-color: rgb(204, 204, 204);
border-right-style: solid;
border-right-width: 0.8px;
border-top-color: rgb(204, 204, 204);
border-top-style: solid;
border-top-width: 0.8px;
box-sizing: border-box;
color: rgb(52, 52, 52);
cursor: default;
display: table-cell;
font-family: Roboto, sans-serif;
font-size: 16px;
font-variant-alternates: normal;
font-variant-caps: small-caps;
font-variant-east-asian: normal;
font-variant-ligatures: normal;
font-variant-numeric: normal;
font-variant-position: normal;
font-weight: 700;
height: 39.2px;
line-height: 22.4px;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 8px;
padding-left: 8px;
padding-right: 8px;
padding-top: 8px;
text-align: center;
text-indent: 0px;
text-size-adjust: 100%;
unicode-bidi: isolate;
vertical-align: middle;
width: 105.887px;
-webkit-border-horizontal-spacing: 0px;
-webkit-border-vertical-spacing: 0px;
            }

 
    

