/* Project Detail Action Buttons - Clickable Style */
.pbmit-ihbox-style-14 .pbmit-icon-wrapper a {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pbmit-ihbox-style-14 .pbmit-icon-wrapper a .pbmit-element-title {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 30px;
}

/* Add click icon after title */
.pbmit-ihbox-style-14 .pbmit-icon-wrapper a .pbmit-element-title::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Hover effects */
.pbmit-ihbox-style-14 .pbmit-icon-wrapper a:hover .pbmit-element-title {
    color: #666;
    transform: translateX(-5px);
}

.pbmit-ihbox-style-14 .pbmit-icon-wrapper a:hover .pbmit-element-title::after {
    opacity: 1;
    right: -5px;
}

/* Add subtle background on hover */
.pbmit-ihbox-style-14:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Cursor pointer for the whole box */
.pbmit-ihbox-style-14 {
    cursor: pointer;
    transition: all 0.3s ease;
}