/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1c1e20;
    background: -moz-radial-gradient(center, circle cover, #583308 0%, #1c1e20 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #583308), color-stop(100%, #1c1e20));
    background: -webkit-radial-gradient(center, circle cover, #583308 0%, #1c1e20 100%);
    background: -o-radial-gradient(center, circle cover, #583308 0%, #1c1e20 100%);
    background: -ms-radial-gradient(center, circle cover, #583308 0%, #1c1e20 100%);
    background: radial-gradient(center, circle cover, #583308 0%, #1c1e20 100%);
    background-color: #2b2b2b;
    color: #fff;
    margin: 0;
    padding: 20px;
}

h1, h2, h3, h5 {
    text-align: center;
    color: #fff;
}


.beliefCanvas{
width: auto;
}
/* Containers and Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column {
    flex: 1;
    padding: 15px;
    min-width: 300px;
}
#cy {
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    overflow: auto; /* Add scrollbars if needed */
    margin-bottom: 20px;
    height: 600px; /* Match the SVG container height */
    width: 900px; /* Match the SVG container width */
}
/* Network and Belief Graph Styling */
#network {
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 600px;
    
}


/* Form Elements */
input[type="number"], select, button {
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    border: 1px solid #cbd5e0;
    background-color: #f8fafc;
    font-size: 16px;
}

button {
    background-color: #4c51bf;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2c5282;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.box {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05);
}

/* Highlighting and Interactivity */
.selected {
    fill: #2c5282;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .column {
        flex: 100%;
    }
}

h5 {
    font-size: 14px;
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: normal;
    font-family: cursive;
}
