.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    background-color: #28a9e2;
    color: white;
    border-bottom: none;
}

.modal-header .close {
    color: white;
    opacity: 1;
}

.project-stack {
    margin: 20px 0;
}

.stack-tags {
    margin-top: 10px;
}

.stack-tags .badge {
    margin: 0 5px 5px 0;
    padding: 8px 12px;
    font-size: 14px;
    background-color: #28a9e2;
}

.project-description {
    margin: 20px 0;
}

.project-links {
    margin-top: 30px;
}

.project-links .btn {
    margin-right: 10px;
}

.btn-primary {
    background-color: #28a9e2;
    border-color: #28a9e2;
}

.btn-secondary {
    background-color: #333;
    border-color: #333;
}

#modalProjectImage {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.modal-project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tech-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tech-item i {
    margin-right: 10px;
    font-size: 24px;
}

.tech-item span {
    font-weight: 600;
    color: #333;
}

.modal-body {
    padding: 2rem;
}

.modal-project-details {
    margin-top: 2rem;
}

#modalProjectTitle {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #007bff;
}

#modalProjectDescription {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .modal-dialog {
        margin: 10px;
    }
}
