html{
	height: 100%;
}
body {
	background-color: #000000;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	margin: 0;
	color: #FFFFFF;
}
h2{
color: #FFFFFF;
margin-bottom: 1.5rem;
font-weight: 500;
}
.login-container,
.forgot-password-container,
.first-login-container,
.password-change-container,
.maintenance-container {
	padding: 2rem;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
	width: 350px;
	padding: 2rem;
    background-color: #111111;
    border-radius: 10px;
    border: 1px solid #00CFFF;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
	max-height: calc(100vh - (2 * 40px));
	overflow-y: auto;
    width: auto;
	min-width: 20%;
    max-width: 90%; 
	position: relative;
}
.input-group {
	margin-bottom: 1rem;
	text-align: left;
}
.input-group label {
	display: block;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	color: #FFFFFF;
}
.input-group input,
.input-group select{
	width: 100%;
	padding: 12px;
	background-color: #000000;
	border: 1px solid #333333;
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 1rem;
	box-sizing: border-box;
}
.input-group input:focus,
.input-group select:focus {
	outline: none;
	border-color: #00CFFF;
}
.login-button {
	width: 100%;
	padding: 12px;
	background-color: #00CFFF;
	color: #000000;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	margin-top: 1rem;
	transition: background-color 0.3s ease;
}
.login-button:hover {
	background-color: #00A3D6;
}
.forgot-password,
.first-login-link{
	display: block;
	margin-top: 1rem;
	color: #00CFFF;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}
.error-text{
	display: block;
	margin-top: 1rem;
	color: #FF0000;
	text-decoration: none;
	font-size: 0.9rem;
}
.forgot-password:hover,
.first-login-link:hover {
	color: #007A9E;
}
.signup-link {
	margin-top: 1.5rem;
	font-size: 0.9rem;
}
.signup-button {
	color: #00CFFF;
	text-decoration: none;
	padding: 8px 16px;
	border: 1px solid #00CFFF;
	transition: all 0.3s ease;
	border-radius: 5px;
}
.signup-button:hover {
	background-color: #00CFFF;
	color: #000000;
}
.remember-me {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1.5rem;
	width: 100%;
	text-align: left;
}
.remember-me input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.55em;
	height: 1.55em;
	border: 1px solid #333333;
	border-radius: 4px;
	transform: translateY(-0.075em);
	cursor: pointer;
	transition: background-color 0.3s, border-color 0.3s;
	position: relative;
	display: grid;
	place-content: center;
}
.remember-me input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	transform: scale(0);
	transition: transform 0.3s ease-in-out;
	box-shadow: inset 1em 1em #000000;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 86% 0, 36% 50%);
}
.remember-me input[type="checkbox"]:checked {
	background-color: #00CFFF;
	border-color: #00CFFF;
}
.remember-me input[type="checkbox"]:checked::before {
	transform: scale(1);
}
.remember-me label {
	margin-bottom: 0;
	font-size: 0.9rem;
	margin-left: 0.5rem;
	color: #DDDDDD;
}
.forgot-password-container {
	padding: 2rem;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
	width: 350px;
	max-width: 90%;
	text-align: center;
}
.forgot-password-box h2 {
	color: #FFFFFF;
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.description {
  color: #AAAAAA;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.submit-button {
	width: 100%;
	padding: 12px;
	background-color: #00CFFF;
	color: #000000;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	margin-top: 0.5rem;
	transition: background-color 0.3s ease;
}
.submit-button:hover {
	background-color: #00A3D6;
}
.back-link {
  margin-top: 2rem;
  font-size: 0.9rem;
}
.back-link a {
	color: #00CFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}
.back-link a:hover {
	text-decoration: underline;
}
.first-login-container {
	padding: 2rem;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
	width: 380px;
	max-width: 90%;
}
.first-login-box h2 {
	color: #FFFFFF;
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.registration-container {
	padding: 2rem;
	margin: 0% 0 0 0;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
	width: 500px;
	max-width: 90%;
	max-height: calc(100vh - (2 * 40px)); 
	overflow-y: auto;
	position: relative;
}
.registration-box h2 {
	color: #FFFFFF;
	margin-bottom: 1.5rem;
	font-weight: 500;
}
.form-section {
	text-align: left;
	margin-bottom: 2rem;
}
.form-section h3 {
	color: #00CFFF;
	font-size: 1.1rem;
	font-weight: 500;
	border-bottom: 1px solid #00CFFF;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}
.password-container {
	position: relative;
	display: flex;
	align-items: center;
}
.password-container input {
	width: 100%; 
	padding-right: 40px;
}
.password-toggle {
	position: absolute;
	right: 12px;
	cursor: pointer;
	font-size: 1.2rem;
	color: #00CFFF;
	user-select: none;
}
.password-strength-bar {
	width: 100%;
	height: 6px;
	background-color: #333333;
	border-radius: 3px;
	margin-top: 5px;
	overflow: hidden;
}
.strength-indicator {
	height: 100%;
	width: 0%;
	background-color: transparent;
	transition: width 0.3s ease, background-color 0.3s ease;
}
.strength-text {
	display: block;
	margin-top: 5px;
	font-size: 0.8rem;
	text-align: center;
	color: #AAAAAA;
}
.strength-low { 
	background-color: #FF6347; 
}
.strength-medium { 
	background-color: #FFC300; 
}
.strength-high { 
	background-color: #00ff66;
}
.register-button {
	width: 100%;
	padding: 12px;
	background-color: #00CFFF;
	color: #000000;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	margin-top: 1rem;
	transition: background-color 0.3s ease;
}
.register-button:hover {
	background-color: #00A3D6;
}
.login-link {
	margin-top: 1.5rem;
	font-size: 0.9rem;
}
.login-link a {
	color: #00CFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}
.login-link a:hover {
	text-decoration: underline;
}
.required-star {
	color: red;
	font-weight: bold;
	margin-left: 2px;
}
.input-group-inline {
	display: flex;
	gap: 1rem;
}
.inline-item {
	flex: 1;
}
.maintenance-container {
	padding: 3rem;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	box-shadow: 0 0 25px rgba(0, 207, 255, 0.25);
	width: 450px;
	max-width: 90%;
}
.icon-indicator {
	font-size: 3rem;
	color: #00CFFF;
	margin-bottom: 1.5rem;
}
h1 {
	color: #FFFFFF;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}
.main-message {
	color: #AAAAAA;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}
.details-message {
	color: #FFFFFF;
	font-size: 1rem;
	margin-bottom: 2rem;
}
.countdown-estimate {
	background-color: #000000;
	padding: 15px;
	border-radius: 5px;
	border-left: 5px solid #00CFFF;
	margin-bottom: 2rem;
}
.countdown-estimate p {
	margin: 0;
	line-height: 1.5;
}
.countdown-estimate strong {
	color: #00CFFF;
	font-weight: 600;
}
.time-estimate {
	font-size: 1.2rem;
	font-weight: bold;
	color: #FFFFFF;
}
.contact-info {
	font-size: 0.9rem;
	color: #AAAAAA;
}
.contact-info a {
	color: #00CFFF;
	text-decoration: none;
	transition: color 0.2s ease;
}
.contact-info a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.password-change-container {
	padding: 2rem;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
	width: 380px;
	max-width: 90%;
}
.password-change-box h2 {
	color: #FFFFFF;
	margin-bottom: 0.5rem;
	font-weight: 500;
}
.user-dashboard-container {
	display: flex;
	max-width: 1400px;
	margin: 40px auto;
	background-color: #111111;
	border-radius: 10px;
	border: 1px solid #00CFFF;
	min-height: 700px;
	max-height: calc(100vh - (2 * 80px)); 
	box-shadow: 0 0 20px rgba(0, 207, 255, 0.15);
}
.dashboard-sidebar {
	width: 30%;
	background-color: #000000;
	padding: 2rem;
	border-radius: 10px 0 0 10px;
	border-right: 1px solid #00CFFF;
}
.user-profile-summary {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #333333;
}
.user-profile-summary h3 {
	color: #FFFFFF;
	font-weight: 600;
	margin-bottom: 0.25rem;
}
.user-profile-summary .user-email {
	color: #00CFFF;
	font-size: 0.9rem;
}
.sidebar-menu ul {
	list-style: none;
	padding: 0;
}
.menu-item {
	margin-bottom: 0.5rem;
}
.menu-item.disable a{
	cursor: not-allowed;
}
.menu-item a {
	display: block;
	padding: 12px 15px;
	color: #AAAAAA;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.2s ease;
	border-radius: 5px;
}
.menu-item a:hover{
	color: #FFFFFF;
	background-color: #222222;
}
.menu-item.disable a:hover{
	color: #AAAAAA;
	background: none;
}
.menu-item.active a {
	color: #000000;
	background-color: #00CFFF;
	font-weight: 600;
}
.logout-link {
	margin-top: 3rem;
	border-top: 1px solid #333333;
	padding-top: 1rem;
}
.logout-link a {
	color: #FF6347;
}
.logout-link a:hover {
	background-color: #222222;
	color: #FFFFFF;
}
.dashboard-content {
	width: 70%;
	padding: 2rem 3rem;
}
.dashboard-content h1 {
	color: #FFFFFF;
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 2rem;
	border-bottom: 2px solid #333333;
	padding-bottom: 0.5rem;
}
.profile-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.info-card {
	background-color: #222222;
	padding: 20px;
	border-radius: 8px;
	border-left: 5px solid #00CFFF;
}
.info-card h3 {
	color: #00CFFF;
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}
.info-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}
.info-card strong {
	color: #AAAAAA;
	font-weight: 400;
	display: inline-block;
	width: 110px;
}
.edit-button {
	background-color: transparent;
	border: 1px solid #00CFFF;
	color: #00CFFF;
	padding: 8px 15px;
	border-radius: 5px;
	margin-top: 15px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}
.edit-button.disable {
	background-color: transparent;
	border: 1px solid #4C4C4C;
	color: #4C4C4C;
	padding: 8px 15px;
	border-radius: 5px;
	margin-top: 15px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	background-color: #4C4C4C;
	color: #000000;
	cursor: not-allowed;
}
.edit-button:hover not(.disable) {
	background-color: #00CFFF;
	color: #000000;
}
.wallet-integration {
    text-align: center; 
    margin-top: 40px; 
    padding: 20px;
    background-color: #0A0A0A; 
    border-radius: 8px;
    border: 1px dashed #00CFFF; 
}
.integration-label {
    color: #AAAAAA;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}
.wallet-link {
    display: inline-block; 
    line-height: 0; 
}
.wallet-image {
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
	border-radius: 50px;
}
.wallet-image:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.device-actions {
    text-align: right;
    margin-bottom: 20px;
}
.add-device-button {
    background-color: #00CFFF;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.add-device-button:hover {
    background-color: #00A3D6;
}
.device-header-row,
.device-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr 1fr 1.5fr; 
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 5px;
}
.device-header-row {
    background-color: #000000;
    color: #00CFFF;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #00CFFF;
}
.device-row {
    background-color: #222222;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    border-left: 5px solid transparent;
}
.device-row:hover {
    background-color: #282828;
    border-left-color: #00CFFF;
}
.device-col-actions {
    display: flex;
    gap: 15px;
}
.action-link {
    color: #00CFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.action-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
}
.action-link.delete-device {
    color: #FF6347;
}
.action-link.delete-device:hover {
    color: #FFFFFF;
}
.no-data-message {
    padding: 30px;
    background-color: #222222;
    border: 1px dashed #333333;
    border-radius: 5px;
    text-align: center;
    color: #AAAAAA;
}
@media (max-width: 768px) {
    .device-header-row {
        display: none;
    }
    .device-row {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 15px;
    }
    .device-row span {
        display: block;
    }
    .device-row span:before {
        content: attr(data-label);
        font-weight: bold;
        color: #00CFFF;
        display: inline-block;
        width: 100px;
        margin-right: 10px;
    }
    .device-col-actions {
        margin-top: 10px;
        justify-content: flex-start;
    }
}
.dashboard-content .device-header-row,
.dashboard-content .device-row {
    grid-template-columns: 1.5fr 2fr 1fr 1fr 1fr; 
}
.device-row.paid-row {
    border-left-color: #28a745;
}
.device-row.pending-row {
    border-left-color: #ffa500;
}
.device-row.unpaid-row {
    border-left-color: #dc3545; 
}
.payment-status {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.85rem;
}
.status-yes {
    background-color: #1a4d2e;
    color: #28a745;
}
.status-yes2 {
    color: #28a745;
}
.status-no {
    background-color: #58151f;
    color: #dc3545;
}
.status-maybe {
    background-color: #ffa500;
    color: #000000;
}
.action-link.pay-now {
    color: #ffc107;
}
.action-link.pay-now:hover {
    color: #FFFFFF;
}
.user-dashboard-container {
    display: flex;
    flex-wrap: nowrap;
    max-width: 1400px;
    width: 100%;
    border-radius: 10px;
    min-height: 700px; 
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.15);
    overflow: hidden; 
}
.dashboard-sidebar {
    flex: 0 0 300px;
    min-width: 250px;
    padding: 2rem;
    border-radius: 10px 0 0 10px;
    overflow-y: auto; 
}
.dashboard-content {
    flex-grow: 1;
    padding: 2rem 3rem;
    overflow-y: auto; 
}
.dashboard-content .invoice-header-row,
.dashboard-content .invoice-row,
.dashboard-content .quote-header-row,
.dashboard-content .quote-row,
.dashboard-content .device-row{
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1.5fr;
}
h1, h2, h3, h4 {
    color: #FFFFFF;
    font-weight: 700;
    margin-top: 0;
}
h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #333333;
    padding-bottom: 15px;
}
a {
    text-decoration: none;
    color: #00CFFF;
}
.user-dashboard-container {
    display: flex;
    width: 100%;
    margin: 0; 
    flex-grow: 1;
}
.dashboard-sidebar {
    width: 300px;
    min-width: 250px;
    background-color: #000000; 
    padding: 2rem;
    border-right: 1px solid #00CFFF; 
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.user-profile-summary {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}
.user-profile-summary h3 {
    color: #00CFFF;
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.user-email {
    color: #AAAAAA;
    font-size: 0.9rem;
}
.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-item {
    margin-bottom: 8px;
}
.menu-item a {
    display: block;
    padding: 12px 10px;
    color: #FFFFFF;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 4px;
}
.menu-item a:hover {
    background-color: #1a1a1a;
    color: #00CFFF;
}
.menu-item.active a {
    background-color: #00CFFF;
    color: #000000;
    font-weight: 700;
}
.logout-link a {
    color: #FF6347;
    margin-top: 20px;
    border-top: 1px solid #333333;
    padding-top: 15px;
}
.logout-link a:hover {
    background-color: #333333;
    color: #FF6347;
}
.dashboard-content {
    flex-grow: 1;
    padding: 2rem 3rem;
    background-color: #111111; 
    overflow-y: auto; /* Permet le défilement du contenu */
}
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}
.info-card {
    background-color: #222222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #00CFFF; /* Bordure stylisée */
}
.info-card h3 {
    color: #00CFFF;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
}
.info-card p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #CCCCCC;
}
.info-card strong {
    color: #FFFFFF;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}
.data-value {
    font-weight: 400;
}
.edit-button {
    background-color: #00CFFF;
    color: #000000;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}
.edit-button:hover:not(.disable) {
    background-color: #00A3D6;
}
.edit-button.disable {
    background-color: #333333;
    color: #999999;
    cursor: not-allowed;
}
.wallet-integration {
    text-align: center;
    padding: 20px;
    border: 1px solid #333333;
    border-radius: 8px;
    background-color: #1a1a1a;
    margin-top: 30px;
}
.integration-label {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}
.wallet-link img {
	max-width: 200px;
    width: auto;
    transition: opacity 0.3s;
}
.wallet-link:hover img {
    opacity: 0.8;
}
.device-actions {
    text-align: right;
    margin-bottom: 20px;
}
.add-device-button {
    background-color: #00CFFF;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.add-device-button:hover {
    background-color: #00A3D6;
}
.device-header-row,
.device-row {
    display: grid;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 5px;
}
.device-header-row {
    background-color: #000000;
    color: #00CFFF;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #00CFFF;
}
.device-row {
    background-color: #222222;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    border-left: 5px solid transparent;
}
.device-row:hover {
    background-color: #282828;
    border-left-color: #00CFFF;
}
.devices-list .device-header-row,
.devices-list .device-row {
    grid-template-columns: 1fr 1.5fr 2fr 1fr 1.5fr; 
}
.dashboard-content .device-header-row:not(.invoice-header-row):not(.quote-header-row),
.dashboard-content .device-row:not(.invoices-list .device-row):not(.quotes-list .device-row) {
    grid-template-columns: 1.5fr 2fr 1fr 1fr 1fr; 
}
.invoice-header-row,
.invoices-list .device-row,
.quote-header-row,
.quotes-list .device-row {
     grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr; /* Colonnes pour Factures/Devis */
}
.device-row.paid-row {
    border-left-color: #28a745; /* Vert pour Payé/Accepté */
}
.device-row.unpaid-row {
    border-left-color: #dc3545; /* Rouge pour Non Payé/En Attente */
}
.payment-status {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    font-size: 0.85rem;
}
.status-yes {
    background-color: #1a4d2e; 
    color: #28a745; 
}
.status-no {
    background-color: #58151f; 
    color: #dc3545; 
}
.action-link {
    color: #00CFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.action-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
}
.action-link.delete-device {
    color: #FF6347;
}
.action-link.delete-device:hover {
    color: #FFFFFF;
}
.action-link.pay-now {
    color: #ffc107;
}
.action-link.status-yes2 {
    color: #28a745;
}
.action-link.status-yes2:hover {
    color: #FFFFFF;
}
.device-col-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.no-data-message {
    padding: 30px;
    background-color: #222222;
    border: 1px dashed #333333;
    border-radius: 5px;
    text-align: center;
    color: #AAAAAA;
}
.faq-item {
    border-left-color: #00CFFF !important; 
    transition: border-left-color 0.2s ease;
}
.faq-item:hover {
    border-left-color: #FFFFFF !important;
}
.faq-item h4 {
    cursor: pointer;
    transition: color 0.2s;
}
.faq-item h4:hover {
    color: #00CFFF !important;
}
.faq-item .description {
    color: #AAAAAA;
}
@media (max-width: 992px) {
	body{
		display: block;
	}
    .dashboard-sidebar {
        width: 100%;
        min-width: auto;
        height: auto;
		max-height:auto;
        position: static;
        border-right: none;
		overflow-y: visible;
        border-bottom: 1px solid #00CFFF;
    }
    .user-dashboard-container {
        flex-direction: column;
    }
    .dashboard-content {
        width: 100%;
        padding: 1.5rem;
    }
    .profile-info-grid {
        grid-template-columns: 1fr;
    }
    .device-header-row {
        display: none;
    }
    .device-row {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 15px;
    }
    .device-row span {
        display: block;
        margin-bottom: 5px;
    }
    .device-row span:before {
        content: attr(data-label);
        font-weight: bold;
        color: #00CFFF;
        display: inline-block;
        min-width: 100px;
        margin-right: 10px;
    }
    .device-col-actions {
        margin-top: 10px;
        justify-content: flex-start;
        border-top: 1px dashed #333333;
        padding-top: 10px;
    }
    .device-row:hover {
         border-left-color: #222222;
    }
	.login-container,
	.forgot-password-container,
	.first-login-container,
	.password-change-container,
	.maintenance-container,
	.registration-container	{
		width: 96%;
		margin: 1%;
		overflow-y: auto;
		max-width: 100%; 
		position: relative;
	}
}
.hidden{display: none;!important}
@media (max-width: 576px) {
    .dashboard-content {
        padding: 1rem;
    }
    .user-profile-summary h3 {
        font-size: 1.2rem;
    }
}
.admin-page h2 {
    color: #00CFFF; 
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 207, 255, 0.6);
}
.admin-page{
	height: 100%;
	width: 80%;
	overflow-y: auto;
}
.admin-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #00CFFF; 
    margin-bottom: 25px;
}
.admin-tabs a {
    flex-grow: 1;
    text-align: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #b3b3b3;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
.admin-tabs a.active {
    background-color: #1a1a1a;
    color: #00CFFF;
    border: 1px solid #00CFFF;
    border-bottom: none; 
}
.admin-modes {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.admin-modes .mode-link {
    padding: 8px 15px;
    margin: 0 10px;
    border: 1px solid #333333;
    border-radius: 5px;
    text-decoration: none;
    color: #b3b3b3;
    transition: background-color 0.3s, border-color 0.3s;
}
.admin-modes .mode-link.active {
    background-color: #00CFFF;
    color: #111111;
    border-color: #00CFFF;
    font-weight: bold;
}
.admin-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 2rem; 
    background-color: #111111; 
    border-radius: 10px; 
    border: 1px solid #00CFFF;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.2);
    margin-bottom: 30px;
	height: 50%;
	overflow-y: auto;
}
form.admin-form{
	height: 50%;
	overflow-y: auto;
}
.tab-content h3 {
    text-align: center;
    color: #00CFFF; 
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(0, 207, 255, 0.5); 
}
.admin-form input:not([type="submit"]),
.admin-form select,
.admin-form textarea,
.edit-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #00CFFF; 
    background-color: #111111;
    color: #ffffff; 
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: #00FFFF;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 207, 255, 0.4); 
}
.admin-form label {
    font-weight: bold;
    color: #ffffff;
    margin-top: 5px;
    display: block;
}
.admin-form button[type="submit"] {
    background-color: #00CFFF;
    color: #111111;
    border: none;
    padding: 14px 25px; 
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px; 
    margin-top: 15px; 
    transition: background-color 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.4); 
}
.admin-form button[type="submit"]:hover {
    background-color: #00a0cc;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.6); 
}
.modification-notice {
    color: #FFC107;
    text-align: center;
    padding: 15px;
    background-color: #2e240c;
    border: 1px solid #FFC107;
    border-radius: 5px;
    margin-bottom: 20px;
}
.modification-list {
    display: grid;
    gap: 10px;
}
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #333333;
}
.item-title {
    color: #ffffff;
}
.action-link.modify-btn {
    background-color: #00CFFF;
    color: #111111;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
}
.web-page-container.admin-page {
    max-width: 95%;
    margin: 20px auto;
    padding: 30px;
}