body {
    font-family: Arial, sans-serif;
    margin: 0; padding: 0;
    background: #f7f7f7;
    color: #333;
}

header {
    background: #4a6cf7;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

main {
    margin: 2rem auto;
    padding: 0 1rem;
}

.filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter input, .filter select, .filter button {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.left-menu {
    display: block;
	float: left;
	padding: 1em;
}

.left-menu a:link {
      color: #5dbdfc;
	  text-decoration: none;
	  font-weight: bold;
	}
.left-menu a:visited {
      color: #5dbdfc;
	  text-decoration: none;
	  font-weight: bold;
	}
.left-menu a:hover {
      color: #ff3333;
	  text-decoration: underline;
	  font-weight: bold;
    }
.left-menu a:active {
      color: #5dbdfc;
	  text-decoration: none;
	  font-weight: bold;
    }


.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card h2 {
    margin-top: 0;
    color: #4a6cf7;
}

.card button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    background: #4a6cf7;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
.card button:hover {
    background: #3a54c7;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    margin-top: 2rem;
}
