 @media only screen and (max-width: 768px) {
            body > *:not(.mobile-message) {
                display: none;
            }
            .mobile-message {
                display: block;
                text-align: center;
                margin-top: 20px;
                font-size: 22px;
				color:white;
				background-color:red;
            }
        }

        @media only screen and (min-width: 769px) {
		body {display: block; }
        .mobile-message {display: none; }
        }

		.loading-icon {
            font-size: 24px;
            margin: 10px;
        }
        .sidebar.show {
            left: 0;
        }
        .content.shifted {
            margin-left: 150px;
        }
        .toggle-btn {
            position: absolute;
            top: 15px;
            right: -50px;
            width: 40px;
            height: 40px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            z-index: 1000;
        }
        .toggle-btn:hover {
            background-color: #0056b3;
        }
        .info-text {
            color: #6c757d; /* Grigio spento */
        }
        .info-icon {
            color: #ffc107; /* Giallo di attenzione */
        } 
		
#divResponse {  margin-top: 20px; text-align: center; height: auto;
		background-color: #ededed; color: black; position: absolute; top: 10px; width: 90%;
		border: 5px solid darkseagreen; padding: 5px; font-size: 22px;}
		#divResponseWrap {display: none;}
#divResponseWrap .close-btn {
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #d91919;
    font-weight: bold;
    border: 4px solid #8fbc8f;
	corner-radius:8px;
    width: 30px;
    text-align: center;
    background-color: #ededed;
    z-index: 3;
}
  .status-box {
    border-radius: 1rem;
    border: 1px solid #dee2e6;
    padding: 1.2rem;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .status-box i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
  }
  .status-box:hover {
    background-color: #e9ecef;
    transform: scale(1.02);
  }