/* styles.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.model-section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.model-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.svg-container {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
}

.bpmn-model {
    width: 100%;
    height: 100%;
}

.controls {
    display: flex;
    gap: 10px;
}

h1, h2, h3, h4 {
    color: #0d6efd;
}

.card {
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .svg-container {
        height: 300px;
    }
}
