.profile {
    display: flex;
    align-items: center;
}

.profile-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.profile-id-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-id {
    background-color: #e0e0e0;
    color: #333;
    padding: 2px 6px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    border: 1px solid #ccc;
}

.profile-pipe {
    margin: 0 2px;
    color: #888;
}

.profile-photo {
    margin-right: 70px;
}

.profile-photo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-details p {
    margin: 0;
}

.profile-details h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 4px 0;
}

.admin-details p,
.profile-details p {
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

.admin-header {
    margin-bottom: 18px;
}

.admin-title {
    font-size: 20px;
    font-weight: bold;
}

.admin-lists h2 {
    font-size: 15px;
    font-weight: bold;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
    margin-bottom: 38px;
}

.admin-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1028px) {
    .admin-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .admin-cards {
        grid-template-columns: 1fr;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile-photo {
        margin-right: 0;
        margin-bottom: 16px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .profile-id-row {
        justify-content: center;
    }

    .profile-details {
        width: 100%;
        text-align: center;
    }
}

.admin-profile-photo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.admin-details {
    flex: 1;
}

.admin-profile-id-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.admin-profile-id {
    background-color: #e0e0e0;
    color: #333;
    padding: 0.5px 4px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ccc;
}

.admin-details p {
    margin: 0;
    font-size: 12px;
}

.admin-details h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 2px 0;
}