
.property-box {
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.property-box:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.property-box:hover .property-icon i {
    transform: scale(1.1);
}

.property-box-image {
    border-radius: 50%;
    border: 2px solid #f8f9fa;
}

.property-title {
    color: #333;
    line-height: 1.2;
}

.function-box {
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.function-box:hover {
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    transform: translateY(-2px);
    background-color: #e9f7ef;
}

.function-box:hover .function-icon i {
    transform: scale(1.1);
    color: #155724 !important;
}

.function-box-image {
    border-radius: 50%;
    border: 2px solid #e9f7ef;
}

.function-title {
    color: #333;
    line-height: 1.2;
}

.property-icon i,
.function-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
    .property-box,
    .function-box {
        min-height: 100px;
    }
    
    .property-title,
    .function-title {
        font-size: 12px;
    }
    
    .property-icon img,
    .function-icon img {
        width: 36px;
        height: 36px;
    }
    
    .property-icon i,
    .function-icon i {
        font-size: 20px;
    }
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    color: #495057;
    font-weight: 600;
}

.modal-body {
    font-size: 14px;
    line-height: 1.6;
}

.modal-body img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.property-box,
.function-box {
    cursor: pointer;
}

.property-box:active,
.function-box:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.property-description,
.function-description {
    white-space: pre-line;
}

.properties-container .row,
.functions-container .row {
    margin-left: -10px;
    margin-right: -10px;
}

.properties-container .row > div,
.functions-container .row > div {
    padding-left: 10px;
    padding-right: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-box,
.function-box {
    animation: fadeInUp 0.5s ease forwards;
}

.property-box:nth-child(1) { animation-delay: 0.1s; }
.property-box:nth-child(2) { animation-delay: 0.2s; }
.property-box:nth-child(3) { animation-delay: 0.3s; }
.property-box:nth-child(4) { animation-delay: 0.4s; }
.property-box:nth-child(5) { animation-delay: 0.5s; }
.property-box:nth-child(6) { animation-delay: 0.6s; }
.property-box:nth-child(7) { animation-delay: 0.7s; }
.property-box:nth-child(8) { animation-delay: 0.8s; }

.function-box:nth-child(1) { animation-delay: 0.1s; }
.function-box:nth-child(2) { animation-delay: 0.2s; }
.function-box:nth-child(3) { animation-delay: 0.3s; }
.function-box:nth-child(4) { animation-delay: 0.4s; }
.function-box:nth-child(5) { animation-delay: 0.5s; }
.function-box:nth-child(6) { animation-delay: 0.6s; }
.function-box:nth-child(7) { animation-delay: 0.7s; }
.function-box:nth-child(8) { animation-delay: 0.8s; }

.nav-tabs .nav-link {
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: transparent transparent #007bff;
    color: #007bff;
}

.nav-tabs .nav-link.active {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
} 