/* Card styling */
.page-link{
    cursor: pointer;
}

/* Detail container styling */
.detail-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Two-column layout for details */
.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.detail-item {
    flex: 1;
    font-size: 1rem;
    margin-bottom: 10px;
}

.detail-item strong {
    margin-right: 10px;
    color: #333;
}

/* Badge styling */
.badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
}


.fs-5 {
    font-size: 1.2rem;
}

.login-fields {
    font-size: 18px;
    font-weight: 500;
    color: gray;
}

/* Button group styling */
.button-group {
    display: flex;
    gap: 10px;
}
/* Questions section styling */
.questions-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
}

.questions-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.question-item {
    padding: 10px;
    border-radius: 5px;
    background-color: #f1f1f1;
    margin-bottom: 10px;
}

.question-item strong {
    font-weight: bold;
}


.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff; /* Placeholder background color */
    color: #fff; /* Text color */
    font-size: 18px; /* Size of the initials */
    font-weight: bold;
    width: 40px; /* Adjust size */
    height: 40px;
}

/* Responsive layout */
@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
}
