body {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #e5e5e5;
    background: #29323c url(background.jpg) no-repeat center center fixed;
    background-size: cover;
    background-position: 50% 0%;
}

.CommName {
    text-align: left;
}

.CommStatus {
    color: grey;
}

table {
    margin: 0 auto;
}

.border {
    border: 3px solid #4391c5;
    border-radius: 3px;
}

p {
    margin: 0;
}

p img {
    height: 22px;
}

a {
    color: #e5e5e5;
    text-decoration: none;
    display: block;
    padding: 10px;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

h1 {
    color: #ffffff;
    font-size: 40px;
    margin: 10px 0;
    line-height: 1em;
}

.border-gradient {
    border: 2px solid #0089ff;
    border-radius: 36px;
}

.header {
    position: relative;
    height: fit-content;
    padding: 32px 64px;
    background-repeat: no-repeat;
    text-align: center;
    max-width: 400px;
    margin: 100px auto 10px;
    box-shadow: 1px 1px 8px rgba(155, 146, 146, 0.03);
    background: #29323c83;
}

.avatar {
    width: 132px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px black;
    margin-bottom: 20px;
}

.flex-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px 10px;
    margin: 5px auto;
    max-width: 800px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.03);
}

.flex-container > div {
    border-radius: 2rem;
    background-color: #cbcae223;
    width: 40%;
    margin: 10px 0 0 10px;
    padding: 0;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 800px) {
    .header {
        max-width: 90%;
    }

    .flex-container {
        flex-direction: column;
        max-width: 90%;
    }

    .flex-container > div {
        width: 100%;
    }
}

.profile {
    margin-bottom: 20px;
}

.icon-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #29323c; /* Match the background color */
    font-size: 18px;
    color: black;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #29323c; /* Add a border to mask the edges */
}

.icon-circle img.icon-image {
    width: 105%; 
    height: 105%;
    object-fit: cover;
}

