{
      transition: all 0.3s ease-in-out;
      box-sizing: border-box;
    }
.container-nav {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			width: 100%;
			padding: 15px 20px;
			display: flex;
			justify-content: flex-end;
			background-color: rgba(0, 0, 0, 0.5);
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
			z-index: 10;
		}

		.navbar {
			list-style: none;
			margin: 0;
			padding: 0;
			display: flex;
			justify-content: flex-end;
			width: auto;
		}

		.navbar li {
			margin-left: 10px; 
		}

		.navbar li a {
			color: white;
			text-decoration: none;
			font-size: 16px; 
			padding: 8px 15px; 
			border-radius: 5px;
			transition: background-color 0.3s ease-in-out;
		}

		.navbar li a:hover {
			background-color: rgba(255, 255, 255, 0.2);
		}
        body {
    		min-width: 50%;
    		min-height: 100%;
    		width: auto;
    		height: auto;
    		background-size: cover;
		}
        .server-box {
            background: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #000000;
            box-shadow: 0px 0px 50px rgba(0, 0, 0, 1);
            width: 100%;
            max-width: 415px;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom: 15px;
        }
        .server-header img {
            width: 100%;
            height: 210px;
            object-fit: cover;
        }
        .server-content {
            padding: 15px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .server-title {
            font-size: 1.3em;
            font-weight: bold;
            color: #ffcc00;
            margin-bottom: 10px;
        }
        .server-wipe {
            font-size: 1em;
            color: #ddd;
            margin-bottom: 15px;
        }
        .progress-container {
            margin-top: auto;
            padding: 10px;
        }
        .progress {
            height: 20px;
            border-radius: 15px;
            background-color: #333;
            position: relative;
        }
        .progress-bar {
            background-color: #28a745;
            height: 100%;
            border-radius: 15px;
            transition: width 0.5s;
        }
        .progress-text {
            position: absolute;
            width: 100%;
            text-align: center;
            font-weight: bold;
            color: #fff;
            line-height: 20px;
        }
        .server-ip-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #222;
            padding: 10px;
            border-radius: 8px;
            font-size: 1em;
            color: #00ff00;
            cursor: pointer;
            margin: 10px;
        }
        .server-ip-bar i {
            color: #fff;
        }
        .server-ip-bar:hover {
            background: #333;
        }
		/* Footer */
		.footer {
			position: fixed;
			bottom: 0;
			left: 0;
			right: 0;
			padding: 15px; 
			background-color: rgba(0, 0, 0, 0.5);
			box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
			text-align: center;
			color: white;
			font-size: 12px; 
			z-index: 10;
			border-top: 1px solid rgba(255, 255, 255, 0.2);
		}
		.footer p {
			margin: 0;
			padding: 0;
		}
}