/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #929292;
}

.wrapper {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto; /* Center the wrapper */
    padding: 20px;
    background-color: #000;
}

/* Header styles */
header {
    background-color: #000;
    padding: 10px 0;
    text-align: center;
}

.logo {
    font-size: 24px;
    color: #fff;
}

	.responsive-img {
	width:100%;
    max-width: 600px; 
    height: auto;
	}

	.responsive-img2 {
    width: 80%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}	
 
	.responsive-img3 {
    max-width: 200px; 
    height: auto;
	}	
 
/* Navigation styles */
nav {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.nav-container {
    text-align: center;
}


.content p {
	line-height: 24px;
}

/* Main content */ 
main {
    padding: 20px;
    background-color: #000;
    margin: 20px 0;
}
.listerspace {margin-bottom:15px;list-style: none;} 
.nodot {list-style:none;}


main a:link {color:#7dab2d}
main a:hover {color:#ffa000}


/* sever 1 */ 


#server1 {max-width: 600px;
         margin:auto;}

#server1 p {text-align:center;}


#server-stats1 {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    display: inline-block;
}

#server-stats1 h2 {
    margin-top: 30px;
    font-size: 16px;

}

#server-stats1 p { 
	line-height: 15px;
}


/* This will change the color of just the data values */
#server-stats1 span {
    color: #bdee63;
    font-weight: bold;
}


/* sever 2 */ 

#server2 {max-width: 400px;
         margin:auto;}

#server2 p {text-align:center;}


#server-stats2 {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    display: inline-block;
}

#server-stats2 h2 {
    margin-top: 30px;
    font-size: 16px;

}

#server-stats2 p { 
	line-height: 15px;
}


/* sever fitbit */ 

#fitbit {max-width: 400px;
         margin:auto;}

#fitbit {text-align:center;}


#fitbit-stats {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    display: inline-block;
    font-weight:bold;
}

#fitbit-stats h2 {
    margin-top: 0;
    font-size: 16px;

}

#fitbit-stats p { 
	line-height: 15px;
}



/* This will change the color of just the data values */
#server-stats2 span {
    color: #bdee63;
    font-weight: bold;
}


.ascii-fitbit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.ascii-fitbit pre {
  font-family: monospace;
  font-size: 14px;
  color: #777;
  background: #000;
  padding: 10px;
  border-radius: 8px;
  white-space: pre;        /* Preserve all spacing */
  margin: 0 auto;
  display: block;
  margin: 0 auto;
  text-align: left;

}

.ascii-label {
  margin-top: 5px;
  color: #777;
  font-family: sans-serif;
  font-size: 16px;
}



/* Footer styles */
footer {
    background-color: #000;
    padding: 10px;
    text-align: center;
    color: #fff;
}


/* Responsive Breakpoints */
@media screen and (max-width: 1280px) {
    .wrapper {
        padding: 1px;
    }
}

@media screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
    }

    header, footer {
        text-align: left;
        padding: 1px;
    }

    .logo {
        font-size: 20px;
    }

    main {
        padding: 15px;
        margin: 15px 0;
    }
}




@media screen and (max-width: 480px) {
    header, footer {
        text-align: left;
        padding: 0px;
    }

    .logo {
        font-size: 18px;
    }

    main {
        padding: 20px;
        margin: 0px 0;
    }
	
   .responsive-img {
        width: 100%;         /* ← this fixes the frame overflow */
        max-width: 100%;
        height: auto;
    }

	.responsive-img2 {
   	 width: 90%;
   	 max-width: 220px;
   	 height: auto;
   	 margin: 0 auto;
	}

    .responsive-img3 {
        width: 90%;
        max-width: 180px;
        height: auto;
        margin: 0 auto;
    }

	
}



