html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;

    background-image: url(/img/back2.png);
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: overlay;
    //background-color: currentColor;
}

header {
    background-color: #323232; /* Updated color as requested */
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;

    background-image: repeating-linear-gradient(345deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 4px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    background-size: 8px 8px, 100% 100%;
}

header .logo-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
    height: 100%; /* Ensure container takes full height of header */
    justify-content: center; /* Center logo horizontally within container */
}

header .logo-container img {
    height: 72px; /* Reduced by additional 15% from 37.5px */
    margin-right: 20px;
    vertical-align: middle; /* Ensure vertical alignment */
    margin-left: 20px;
    
}

.logon-container
{
    display: flex;
    gap: 0px;
    align-items: center;
}

/* Home link style */
.home-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-right: auto;
    transition: all 0.3s ease;
}

.home-link:hover {
    color: #ddd;
}

.login-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-right: 40px;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: #ddd;
}

/* User profile styles */
.user-profile {
    position: relative;
    margin-right: 30px;
    cursor: pointer;
}

.user-initial {
    width: 40px;
    height: 40px;
    background-color: #4f77a3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.user-initial:hover {
    background-color: #3a5d85;
    transform: scale(1.05);
}

.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 220px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s ease;
}

.user-dropdown.show {
    display: block;
}

.user-info {
    padding-bottom: 10px;
}

.user-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.user-email {
    color: #666;
    font-size: 14px;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 10px 0;
}

.tamgaes-dropdown-menu {
    display: flex;
    flex-direction: column;
}

.tamgaes-dropdown-item {
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.tamgaes-dropdown-menu-2fa img
{
    height: 15px;
}

.tamgaes-dropdown-item:last-child {
    border-bottom: none;
}

.tamgaes-dropdown-item:hover {
    color: #4f77a3;
    background-color: #f9f9f9;
    padding-left: 5px;
}

.header-divider {
    width: 50%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 5px auto;
    border-radius: 1.5px;
}

@media (max-width: 900px) {
   

    /*!* Hide home link on mobile *!*/
    /*.home-link {*/
    /*    display: none;*/
    /*}*/

    header {
        justify-content: space-between;
    }

    header .logo-container {
        margin-left: 0;
    }
    

    /* Responsive user profile */
    .user-profile {
        margin-right: 20px;
    }

    .user-dropdown {
        right: -10px;
    }
}

@media (max-width: 600px) {

    header .logo-container img {
        height: 70px;
        margin-left: 20px;
    }

    header .logo-container span {
        font-size: 14px;
    }

    .header-customer-name{
        display: none;
    }
}




     /* Additional styles for admin panel */
 .admin-container {
     max-width: 1200px;
     margin: 40px auto;
     background-color: white;
     border-radius: 20px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     padding: 20px;
 }

.admin-header {
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-header .logo {
    height: 80px;
}

.admin-header h1 {
    color: #4f77a3;
    font-size: 28px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.admin-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    overflow-x: auto;
}

.admin-tab {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: #666;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.admin-tab:hover {
    color: #4f77a3;
    background-color: #f9f9f9;
}

.admin-tab.active {
    color: #4f77a3;
    border-bottom-color: #4f77a3;
}

.admin-content {
    padding: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.admin-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.admin-card h3 {
    color: #4f77a3;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.admin-form-group {
    margin-bottom: 15px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: #4f77a3;
    box-shadow: 0 0 0 2px rgba(79, 119, 163, 0.2);
    outline: none;
}

.admin-form-group .checkbox-container {
    display: flex;
    align-items: center;
}

.admin-form-group .checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background-color: #f0f7ff;
    color: #4f77a3;
    font-weight: bold;
}

.admin-table tr:hover {
    background-color: #f9f9f9;
}

.admin-table .action-buttons {
    display: flex;
    gap: 5px;
}

.admin-table .action-button {
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.admin-table .edit-button {
    background-color: #f0f7ff;
    color: #4f77a3;
    border: 1px solid #d0e3ff;
}

.admin-table .delete-button {
    background-color: #ffebee;
    color: #e53935;
    border: 1px solid #ffcdd2;
}

.admin-table .edit-button:hover {
    background-color: #e0f0ff;
}

.admin-table .delete-button:hover {
    background-color: #ffcdd2;
}

.admin-button {
    padding: 6px 11px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-right: 10px;
}

.primary-button {
    background-color: #4f77a3;
    color: white;
}

.secondary-button {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.primary-button:hover {
    background-color: #3a5d85;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
    background-color: #e0e0e0;
}

.search-container {
    display: flex;
    margin-bottom: 20px;
}

.search-container input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
}

.search-container button {
    padding: 6px 17px;
    background-color: #4f77a3;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-container button:hover {
    background-color: #3a5d85;
}

.link-report
{
    cursor: pointer;
    font-size: medium;
    padding-left: 15px;
    text-decoration: none;
}
.link-report img
{
    width: 20px;
}

/*.pagination {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-top: 20px;*/
/*}*/

/*.pagination-button {*/
/*    padding: 8px 12px;*/
/*    margin: 0 5px;*/
/*    border-radius: 5px;*/
/*    background-color: #f5f5f5;*/
/*    color: #666;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.pagination-button.active {*/
/*    background-color: #4f77a3;*/
/*    color: white;*/
/*}*/

/*.pagination-button:hover:not(.active) {*/
/*    background-color: #e0e0e0;*/
/*}*/

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 70%;
    /*max-width: 700px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #4f77a3;
    margin: 0;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #4f77a3;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* Filter styles */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f0f7ff;
    border-radius: 10px;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-label {
    font-weight: bold;
    margin-right: 10px;
    color: #4f77a3;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
}

/* Settings category styles */
.settings-category {
    background-color: white;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.settings-category h4 {
    color: #4f77a3;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 19px;
}

.settings-category-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.settings-category-header .toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.settings-category-header.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.settings-category-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: max-content;
}

.settings-category-content.collapsed {
    max-height: 0;
}



/* Responsive adjustments */
@media (max-width: 900px) {
    .admin-container {
        margin: 20px;
    }

    .modal-content {
        width: 90%;
        margin: 10% auto;
    }
}

@media (max-width: 600px) {
    .admin-tabs {
        flex-wrap: wrap;
    }

    .admin-tab {
        flex: 1 0 auto;
        text-align: center;
    }

    .admin-content {
        padding: 15px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-group {
        width: 100%;
        margin-bottom: 10px;
    }
}


.claims{
    font-size: 12px;
}



.notification-message {
    color: #e74c3c;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px 10px 10px 10px;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
    display: none;
    position: relative; /* Pozisyon ayarı için eklendi */
}

.notification-message ul
{
    list-style-type: none;
    padding-left: 0px;
}

.notification-info-message {
    color: #265013!important;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px 10px 10px 10px!important;
//  background-color: #ffebee;
    border-left: 4px solid #265013!important;
    border-radius: 4px;
    display: block;
    position: relative; /* Pozisyon ayarı için eklendi */
}



/* Footer */
footer {
    background-color: #1f1c17 ;
    padding: 20px 20px ;
    color: #f8f9fa ;
    font-size: 14px ;
    position: relative ;
    min-height: 300px ;
    margin-top: auto ;
}

footer::before {
    content: '' ;
    position: absolute ;
    top: 0 ;
    left: 0 ;
    width: 100% ;
    height: 4px ;
    background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853) ;
}

.footer-content {
    max-width: 1200px ;
    margin: 0 auto ;
    display: flex ;
    flex-direction: column ;
    gap: 20px ;
}

.footer-logo {
    display: flex ;
    align-items: center ;
    justify-content: center ;
    margin-bottom: 20px ;
    gap: 15px ;
}

.footer-logo img {
    height: 40px ;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) ;
}

.footer-logo h3 {
    color: #ffffff ;
    font-size: 24px ;
    font-weight: 600 ;
    margin: 0 ;
}

.footer-info {
    display: flex ;
    justify-content: space-between ;
    flex-wrap: wrap ;
    gap: 30px ;
    margin-bottom: 20px ;
}

.footer-section {
    flex: 1 ;
    min-width: 250px ;
}

.footer-section h4 {
    color: #FBBC05 ;
    font-size: 15px ;
    margin-bottom: 15px ;
    position: relative ;
    padding-bottom: 10px ;
}

.footer-section h4::after {
    content: '' ;
    position: absolute ;
    bottom: 0 ;
    left: 0 ;
    width: 40px ;
    height: 3px ;
    background-color: #4285F4 ;
}

.footer-section ul {
    list-style: none ;
    padding: 0 ;
    margin: 0 ;
}

.footer-section ul li {
    margin-bottom: 10px ;
}

.footer-section ul li a {
    display: flex ;
    align-items: center ;
    gap: 10px ;
    color: #e0e0e0 ;
    text-decoration: none ;
    transition: all 0.3s ease ;
}

.footer-section ul li a:hover {
    color: #FBBC05 ;
    transform: translateX(5px) ;
}

.auth-technologies {
    display: flex ;
    flex-wrap: wrap ;
    gap: 15px ;
}

.auth-tech {
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    gap: 5px ;
}

.auth-tech img {
    width: 40px ;
    height: 40px ;
    object-fit: contain ;
    border-radius: 8px ;
    background-color: rgba(255, 255, 255, 0.1) ;
    padding: 5px ;
    transition: all 0.3s ease ;
}

.auth-tech:hover img {
    transform: scale(1.1) ;
    background-color: rgba(255, 255, 255, 0.2) ;
}

.auth-tech span {
    font-size: 12px ;
    color: #e0e0e0 ;
}

.footer-section p {
    display: flex ;
    align-items: center ;
    gap: 10px ;
    margin-bottom: 10px ;
}

.footer-bottom {
    text-align: center ;
    padding-top: 20px ;
    border-top: 1px solid rgba(255, 255, 255, 0.1) ;
}

footer p {
    margin: 0 ;
    line-height: 1.6 ;
    color: #a0a0a0 ;
}

footer a {
    color: #4285F4 ;
    text-decoration: none ;
    transition: all 0.3s ease ;
    font-weight: 500 ;
}

footer a:hover {
    color: #FBBC05 ;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column ;
        gap: 30px ;
    }

    .footer-section {
        width: 100% ;
    }

    .footer-logo {
        flex-direction: column ;
        text-align: center ;
    }

    .auth-technologies {
        justify-content: center ;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1) ;
    }
    50% {
        transform: scale(1.05) ;
    }
    100% {
        transform: scale(1) ;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0 ;
        transform: translateY(10px) ;
    }
    to {
        opacity: 1 ;
        transform: translateY(0) ;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(30px) ;
        opacity: 0 ;
    }
    to {
        transform: translateX(0) ;
        opacity: 1 ;
    }
}

.method-card.active {
    /* Removed pulse animation that was causing unwanted shaking */
}

.method-card {
    animation: fadeIn 0.5s ease-out ;
}

.method-card:nth-child(1) {
    animation-delay: 0.1s ;
}

.method-card:nth-child(2) {
    animation-delay: 0.2s ;
}

.method-card:nth-child(3) {
    animation-delay: 0.3s ;
}

.method-card:nth-child(4) {
    animation-delay: 0.4s ;
}

.feature {
    animation: slideIn 0.5s ease-out ;
}

.feature:nth-child(1) {
    animation-delay: 0.2s ;
}

.feature:nth-child(2) {
    animation-delay: 0.4s ;
}

.feature:nth-child(3) {
    animation-delay: 0.6s ;
}

/* Responsive design */
@media (max-width: 992px) {
    .ssocontainer{
        flex-direction: column ;
        margin: 20px 0 ;
        border-radius: 0 ;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) ;
    }

    .login-ssocontainer,
    .info-ssocontainer {
        padding: 40px 30px ;
    }

    .info-ssocontainer {
        order: -1 ;
        padding-bottom: 60px ;
    }

    .info-content {
        max-width: 100% ;
    }

    .features {
        margin-bottom: 30px ;
    }

    .help-links {
        margin-top: 30px ;
        flex-direction: row ;
        flex-wrap: wrap ;
        justify-content: center ;
        gap: 15px ;
    }

    .help-links a {
        flex: 1 ;
        min-width: 200px ;
        justify-content: center ;
    }
}

@media (max-width: 768px) {
    .login-methods.accordion {
        gap: 12px ;
    }

    .method-card {
        max-width: 500px ;
        margin: 0 auto ;
    }

    .method-header {
        padding: 16px 20px ;
    }

    .method-card.active .method-content {
        padding: 16px 20px ;
    }

    .method-icon {
        width: 40px ;
        height: 40px ;
    }

    .method-icon i {
        font-size: 18px ;
    }

    .method-header h3 {
        font-size: 16px ;
        margin-left: 12px ;
    }

    .login-header h1 {
        font-size: 28px ;
    }

    .info-content h2 {
        font-size: 32px ;
    }

    .feature {
        padding: 12px ;
    }
}

@media (max-width: 576px) {
    body {
        background: linear-gradient(135deg, #f9fafc, #edf2f7) ;
    }

    .ssocontainer {
        margin: 0 ;
        box-shadow: none ;
    }

    .login-ssocontainer,
    .info-ssocontainer {
        padding: 25px 15px ;
    }

    .login-header .logo {
        height: 60px ;
        margin-bottom: 15px ;
    }

    .login-header h1 {
        font-size: 22px ;
    }

    .login-header p {
        font-size: 14px ;
    }

    .login-methods.accordion {
        gap: 10px ;
        margin-top: 20px ;
    }

    .method-card {
        border-radius: 12px ;
    }

    .method-header {
        padding: 14px 16px ;
    }

    .method-card.active .method-content {
        padding: 14px 16px ;
        max-height: 150px ;
    }

    .method-icon {
        width: 36px ;
        height: 36px ;
    }

    .method-icon i {
        font-size: 16px ;
    }

    .method-header h3 {
        font-size: 15px ;
        margin-left: 10px ;
    }

    .accordion-icon {
        width: 20px ;
        height: 20px ;
    }

    .method-info {
        margin-bottom: 15px ;
    }

    .method-info p {
        font-size: 13px ;
        line-height: 1.4 ;
    }

    .select-method-btn {
        padding: 8px 16px ;
        font-size: 14px ;
    }

    .feature {
        flex-direction: column ;
        gap: 15px ;
        align-items: center ;
        text-align: center ;
        padding: 20px 15px ;
    }

    .feature i {
        margin-bottom: 5px ;
    }

    .feature h3 {
        font-size: 18px ;
    }

    .help-links {
        flex-direction: column ;
        padding: 15px ;
    }

    .info-content h2 {
        font-size: 26px ;
    }

    .info-content p {
        font-size: 15px ;
        margin-bottom: 25px ;
    }

    footer {
        padding: 20px 15px ;
    }

    footer::before {
        height: 3px ;
    }
}


.login-button {
    width: 100%;
    padding: 14px;
    background-color: #4f77a3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #3a5d85;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-button:active {
    transform: translateY(0);
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: #4f77a3;
}

.back-link i {
    margin-right: 5px;
}

.close-btn-header
{
    text-align: right;
}



.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #4f77a3;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
}

.info-box img{
    width: 32px;
}
.info-box h5 {
    margin-top: 0;
    color: #4f77a3;
    text-align: center;
}

.info-box p {
    margin-bottom: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 48px;
    color: #2ecc71;
    margin-bottom: 15px;
    background-color: #eafaf1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-message h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.success-message p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.button-container .login-button {
    min-width: 150px;
}

.email-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.unblock
{
    color: #dc3545;
    font-size: 16px;
    cursor: pointer;
}

.hide{
    display: none!important;
}

.dv-switch
{
    padding: 20px 0px 20px 0px;
    font-weight: bold;
    display: flex;
    gap: 11px;
}




.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 28, 23, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-header i {
    font-size: 24px;
    color: #FBBC05;
}

.cookie-consent-header h3 {
    font-size: 20px;
    margin: 0;
}

.cookie-consent-text {
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #FBBC05;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
    color: #4285F4;
}

.cookie-consent-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: #4285F4;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background-color: #EA4335;
    color: white;
}

.cookie-btn-reject:hover {
    background-color: #d33426;
    transform: translateY(-2px);
}

.cookie-warning {
    color: #EA4335;
    font-weight: 600;
    margin-top: 10px;
}

/* KVKK Modal Styles */
.kvkk-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kvkk-modal.show {
    display: flex;
    opacity: 1;
}

.kvkk-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.kvkk-modal.show .kvkk-modal-content {
    transform: translateY(0);
}

.kvkk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.kvkk-modal-header h2 {
    color: #4285F4;
    font-size: 24px;
    margin: 0;
}

.kvkk-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #5f6368;
    cursor: pointer;
    transition: color 0.3s ease;
}

.kvkk-modal-close:hover {
    color: #EA4335;
}

.kvkk-modal-body {
    line-height: 1.6;
}

.kvkk-modal-body h3 {
    color: #4285F4;
    margin: 20px 0 10px;
}

.kvkk-modal-body p {
    margin-bottom: 15px;
}

.kvkk-modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.kvkk-modal-body li {
    margin-bottom: 8px;
}

.button-highlight {
    animation: pulse 2s infinite;
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px #ff4444 !important;
}

@keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }


/* Responsive design */
@media (max-width: 595px) {
    .container {
        margin: 1px;
        padding: 1px;
        width: -webkit-fill-available;
        width: -moz-available;
    }

    .header h1 {
        font-size: 28px;
    }

    .header p {
        font-size: 16px;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .footer-info {
        flex-direction: column;
    }
}


.unverified
{
    color: red;
    font-size: 15px;
    cursor: pointer;
    display: none;
}
.unverified:hover
{   
    font-size: 17px;
}
.mfa-dv{
    display: flex;    
    justify-content: right;    
    gap: 7px;
    align-items: center;
}



