.card {
    min-height: 350px;
}
.board-heading {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title {
    margin-bottom: 1rem;
}
.card-text {
    font-size: 1rem;
}
.profile-link {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
}
.profile-link:hover {
    text-decoration: underline;
    color: #343a40;
    transform: scale(1.05);
}
.rounded-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #1693D2;
}
.custom-modal.modal-dialog {
    width: 75vw;
    max-width: none;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 20px;
}
.modal-custom-content {
    width: 100%;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    position: relative;
}
.modal-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    font-family: "Open Sans", sans-serif;
    
}
.profile-container {
    margin-bottom: 20px;
}
.profile-image {
    width: 160px;
    height: 160px;
    border: 3px solid #1693D2;
}
.profile-name {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 600;
}
.profile-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 0 20px;
}
.btn-close {
    background-color: transparent;
    border: none;
    font-size: 1.25rem;
    position: absolute;
    top: 15px;
    right: 20px;
    color: #343a40;
    cursor: pointer;
}

.btn-close:hover {
    color: #1693D2;
    text-shadow: 0 0 5px rgba(22, 147, 210, 0.5);
}

@media (min-width: 576px) and (max-width: 1024px) {
    .custom-modal.modal-dialog {
        width: 90vw;
        max-width: none;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        padding: 20px;
    }
}
@media (max-width: 576px) {
    .custom-modal.modal-dialog {
        width: 100vw;
        max-width: none;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        padding: 20px;
    }
    .profile-name {
        font-size: 1.25rem;
    }
    .profile-text {
        font-size: 0.9rem;
    }
}
