/* Global Styles */

.logo {
  max-height: 50px;
  height: auto;
}

/* === General Layout === */
body {
    background-color: #f8f9fc;
    font-family: 'Arial', sans-serif;
	color: #2c3e50;
}
.container.account-container {
    padding: 40px 0;
}

/* === Sidebar Styling === */
.account-sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.account-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.account-menu li {
    margin-bottom: 10px;
}
.account-menu a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    color: #333;
    padding: 8px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
.account-menu a i {
    margin-right: 10px;
}
.account-menu a:hover, .account-menu a.active {
    background-color: #6f42c1;
    color: white;
}
.logout a {
    color: red;
}

/* === Dashboard Styling === */
.dashboard-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.dashboard-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* === Alerts & Messages === */
/*.alert {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 5px;
    color: #31708f;
}*/

/* === Settings Button === */
.btn-sm {
    padding: 5px 12px;
    font-size: 14px;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .account-sidebar {
        margin-bottom: 20px;
    }
}


/* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 20px;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 1px solid #333;
			font-size: 15px;
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .cookie-content p {
            margin: 0;
            flex: 1;
            min-width: 300px;
        }

        .cookie-content p a {
            color: #4dabf7;
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cookie-buttons .btn {
            white-space: nowrap;
        }
		
/* Reduce cookie banner button size */
.cookie-consent .btn-sm {
    padding: 6px 14px;   /* tighter padding */
    font-size: 0.85rem;  /* smaller text */
    border-radius: 20px; /* less rounded */
    box-shadow: none;    /* optional: remove heavy shadow */
}		

        /* Cookie Settings Modal */
        .cookie-modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .cookie-modal-content {
            background-color: #fff;
            margin: 5% auto;
            padding: 0;
            border: none;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cookie-modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cookie-modal-header h3 {
            margin: 0;
            color: #333;
        }

        .cookie-close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .cookie-close:hover {
            color: #000;
        }

        .cookie-modal-body {
            padding: 20px;
        }

        .cookie-setting {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .cookie-setting:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .cookie-setting-info {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-setting-info h4 {
            margin: 0 0 5px 0;
            color: #333;
        }

        .cookie-setting-info p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }

        .cookie-toggle .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .cookie-toggle .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-toggle .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .cookie-toggle .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        .cookie-toggle input:checked + .slider {
            background-color: #007bff;
        }

        .cookie-toggle input:checked + .slider:before {
            transform: translateX(26px);
        }

        .cookie-modal-footer {
            padding: 20px;
            border-top: 1px solid #eee;
            text-align: right;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-setting {
                flex-direction: column;
                align-items: stretch;
            }
            
            .cookie-setting-info {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cookie-toggle {
                text-align: center;
            }
}

.whatsapp-fab{position:fixed;bottom:12px;right:18px;z-index:2147483647}
            .whatsapp-fab.left{right:auto;left:18px}
            .whatsapp-fab a{display:inline-block;line-height:0;text-decoration:none;
                box-shadow:0 8px 24px rgba(0,0,0,.2);border-radius:9999px}
            .whatsapp-fab a:hover{filter:brightness(1.05)}
            .whatsapp-fab img{display:block;height:200px;width:auto}
			
/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-fab img{display:block;height:80px;width:auto}
}			