/* Board Manager Plugin Styles */

.board-member {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 8px 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    gap: 16px;
}

.board-member:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.board-member__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.board-member__photo {
    margin-bottom: 12px;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.board-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.board-member__photo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.board-member__photo--empty i {
    font-size: 48px;
    color: #999;
}

.board-member__position {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.board-member__name {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.board-member__email {
    margin: 0;
    font-size: 14px;
}

.board-member__email a {
    color: #0066cc;
    text-decoration: none;
}

.board-member__email a:hover {
    text-decoration: underline;
}
