   .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            overflow: hidden;
            z-index: 9999;
        }
        .star {
            position: absolute;
            border-radius: 50%;
            width: 5px;
            height: 5px;
            background-color: white;
            opacity: 0;
            animation: star-animation 1.5s ease-out forwards;
        }
        @keyframes star-animation {
            0% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(2); }
        }
        .table-responsive { max-height: 400px; overflow-y: auto; }
        @media (max-width: 1479px) {
            .col-lg-3 { flex: 0 0 100%; max-width: 100%; margin-bottom: 1rem; }
            .hidden-on-mobile { display: none; }
            .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .row-cols-sm-3 { display: flex; flex-wrap: wrap; justify-content: space-between; }
            .col { flex: 1 1 calc(33.333% - 1rem); max-width: calc(33.333% - 1rem); margin-bottom: 1rem; }
        }
        .sliding-panel {
            position: fixed;
            top: 0;
            left: 100%;
            width: 100%;
            height: 100%;
            background-color: #f4f4f4;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: transform 0.3s ease;
            transform: translateX(0);
            overflow: hidden;
        }
        .sliding-panel.active { transform: translateX(-100%); }
        .close-btn {
            position: absolute;
            top: 15px;
            right: 50px;
            font-size: 2.5rem;
            color: #fff;
            background-color: #ff4d4d;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1100;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease, background-color 0.2s ease;
        }
        .close-btn:hover { background-color: #e60000; transform: scale(1.1); }
        .close-btn:active { transform: scale(0.95); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
        iframe { border: none; }
        .horizontal-text { text-align: center; }
        a { text-decoration: none; }
        a.no-underline { text-decoration: none; }
        .hover-effect {
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .hover-effect:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        }
        .card {
            border: 2px solid #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        .card:hover {
            border-color: #3498db;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
        }
        .container-fluid { margin-top: -8px; }
        .card-body { padding: 1.5rem; }
        .card-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
        }
        .card h5, .card h4 { margin-bottom: 0.5rem; }
        .card a { text-decoration: none; }
        .card a:hover { text-decoration: underline; }
        .container-fluid { padding-left: 0; padding-right: 0; }
        .card { min-height: 112px; }
		
		    .dashboard {
            width: 200px;
            height: 200px;
            position: relative;
        }
        
        .gauge {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .gauge-body {
            width: 100%;
            height: 100%;
            background: #333;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        .gauge-marks {
            position: absolute;
            width: 90%;
            height: 90%;
            top: 5%;
            left: 5%;
            border-radius: 50%;
            background: #111;
        }
        
        .gauge-cover {
            position: absolute;
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-radius: 50%;
            background: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.8) inset;
        }
        
        .gauge-value {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .gauge-label {
            font-size: 1.2rem;
            color: #ccc;
        }
        
        .needle {
            width: 4px;
            height: 45%;
            background: #e74c3c;
            position: absolute;
            top: 10%;
            left: 50%;
            transform-origin: 50% 100%;
            transform: translateX(-50%) rotate(0deg);
            border-radius: 4px;
            z-index: 10;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease-out;
        }
        
        .needle::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background: #c0392b;
            border-radius: 50%;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .mark {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .mark::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 15px;
            background: #777;
            top: 0;
            left: 50%;
            transform-origin: 50% 150px;
        }
        
        .mark:nth-child(1)::before { transform: rotate(-60deg); }
        .mark:nth-child(2)::before { transform: rotate(-30deg); }
        .mark:nth-child(3)::before { transform: rotate(0deg); background: #e74c3c; height: 20px; }
        .mark:nth-child(4)::before { transform: rotate(30deg); }
        .mark:nth-child(5)::before { transform: rotate(60deg); }
        
        .numbers {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            color: white;
            font-size: 0.9rem;
        }
        
        .numbers span {
            position: absolute;
            transform-origin: 50% 150px;
        }
        
        .numbers span:nth-child(1) { transform: rotate(-60deg) translateY(-120px); }
        .numbers span:nth-child(2) { transform: rotate(-30deg) translateY(-120px); }
        .numbers span:nth-child(3) { transform: rotate(0deg) translateY(-120px); color: #e74c3c; font-weight: bold; }
        .numbers span:nth-child(4) { transform: rotate(30deg) translateY(-120px); }
        .numbers span:nth-child(5) { transform: rotate(60deg) translateY(-120px); }
        
        .status {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            color: #2ecc71;
            font-weight: bold;
            font-size: 1.2rem;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
		
		.graf {
          
           position: absolute;
			margin-top: -420px;
			margin-left: 450px;
          
           
        
        }
		
		
		
 .uptime-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
  }
  
  .uptime-gauge {
    width: 100%;
    height: 100%;
	top: -10%;
	 position: absolute;
  }
  
  .uptime-label {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
  }
  
  .uptime-status {
    position: absolute;
    top: 58%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
  }
  
  .status-indicator {
            position: absolute;
            bottom: 45px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            width: fit-content;
            margin: 0 auto;
            background-color: rgba(46, 204, 113, 0.1);
            transition: all 0.3s ease;
        }
  
  @media (max-width: 768px) {
    .uptime-container {
      width: 250px;
      height: 250px;
    }
  }		
		