/* General reset and styling for body and html */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar styling */
.navbar {
    background-color: #333;
    color: #fff;
    font-size: 1.125rem;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure navbar is above other content */
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center items horizontally */
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
}

/* Main section styling */
main {
    display: flex;
    justify-content: center; /* Center horizontally */
    padding-top: 60px; /* Add padding to avoid content being hidden behind the fixed navbar */
    background-color: #f9b5b5a5; /* Background color */
    padding-bottom: 60px;
}

/* Container to center the content */
.content-container {
    width: 760px; /* Fixed width for content */
}

/* Image container styling */
.image-container {
    /* padding: 20px;  Padding around the image */
    background-color: #fff; /* Background color to highlight shadow effect */
    border: 2px solid black;
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 20px; /* 20px gap below the image container */
}

/* Ensure the image fits within the container */
.image-container img {
    width: 100%; /* Image width fills the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline spacing */
    border-radius: 5px;
}

/* Profiles container styling */
.profiles-container {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap; /* Wrap items to next line if needed */
    justify-content: center; /* Center profiles horizontally */
    gap: 20px; /* Space between profiles */
}

.card {
    display: flexbox;
    width: 123px;
    border: 1.25px solid #000000;
    border-radius: 10px;
    overflow: hidden;
    background-color: #eeedede7;
    box-shadow: 0 1px 5px rgb(230, 249, 109);
    text-align: center;
    padding: 0px 20px 10px 20px;
}

.card img{
    border-radius: 15px;
}

.status-container {
    display:flex;
    position: relative;
    float: left;
    /* line-height: 20px; */
    top: 30px;
    left: 5px;
    padding: 0px 12px;
    /* left: 10px; */
    background-color: #ebebebdc;
    border-radius: 15px;
    width: 70px;
    /* opacity: 0.75; */
    /* padding: 5px 10px; */
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    z-index: 1; /* Ensure it is on top of the image */
}

.statusg {
    height: 8px;
    width: 8px;
    border: 0.25px solid rgb(100, 246, 100);
    border-radius: 50%;
    background-color: rgb(45, 243, 45);
    box-shadow: 0px 0px 3px 1px rgb(90, 240, 90); /* Green glow effect */
    margin-right: 10px;
}

.statusr {
    height: 8px;
    width: 8px;
    border: 0.25px solid rgb(240, 39, 39);
    border-radius: 50%;
    background-color: rgb(240, 13, 13);
    box-shadow: 0px 0px 3px 1px rgb(245, 93, 66); /* Green glow effect */
    margin-right: 10px;
}

.status-container p{
    margin: 0px;
    padding: 2px;
}

.card img {
    width: 100%;
    height: auto;
}

.card .status {
    top: 10px;
    left: 10px;
    background-color: #4CAF50;
    color: #fff;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
    z-index: 200;
}

.card .name {
    font-size: 24px;
    margin: 10px 0;
}

.card .country {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.card .country img {
    width: 20px;
    height: auto;
    margin-left: 5px;
}

.card .contact {
    margin: 10px 0;
    padding: 10px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
}

video {
    max-width: 100%;
    max-height: 500px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10;
}