body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	}

header {
    background-color: #FCB1E8;
    color: white;
    padding: 10px;
    text-align: center;
}

nav {
    margin-bottom: 20px;
color: #FFF;

}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
	color: #FFF;
}

nav ul li {
    margin: 0 5px;
    padding: 5px 8px;
    color: #FFF;
    cursor: pointer;
}

nav ul li:hover {
    background-color: #FFF;
}






.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px;
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 10px; /* Rounded corners for a soft look */
    box-shadow: 0 4px 6px rgba(f, f, f, f); /* Subtle shadow for depth */
    color: #333; /* Dark gray text for good contrast */
}

.column {
    flex: 1;
    margin: 3px;
    padding: 3px;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}


/* Column widths */
.column-1,
.column-3 {
    flex: 1; /* 30% each */
}

.column-2 {
    flex: 2; /* 40% */
    max-height: 400px; /* Optional height */
    overflow-y: auto; /* Enables scrolling */
}


.column-4 {
    flex: 1; /* 40% */
    max-height: 400px; /* Optional height */
    overflow-y: auto; /* Enables scrolling */
}

.column-5 {
    flex: 2; /* 40% */
    max-height: 400px; /* Optional height */
    overflow-y: auto; /* Enables scrolling */
}

.column-6 {
    flex: 1; /* 40% */
    max-height: 400px; /* Optional height */
    overflow-y: auto; /* Enables scrolling */
}


.column h3 {
    text-align: center;
    margin-bottom: 10px;
}

.scrollable {
    max-height: 800px;
    overflow-y: auto;
}


