
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f5f5f5; }
.site-header, .site-footer { background: #0a3d62; color: white; padding: 1em; display: flex; justify-content: space-between; align-items: center; }
.main-menu ul { list-style: none; display: flex; gap: 1em; padding: 0; margin: 0; }
.main-menu a, .user-menu a { color: white; text-decoration: none; }
.front-page, .create-team { padding: 2em; text-align: center; }
.btn { background: #1e90ff; color: white; padding: 0.5em 1em; text-decoration: none; border-radius: 5px; }
form { display: flex; flex-direction: column; gap: 1em; align-items: center; }
input[type="text"], input[type="number"] { padding: 0.5em; width: 200px; }
.dropdown { position: relative; cursor: pointer; }
.dropdown-content { display: none; position: absolute; right: 0; background: white; color: black; min-width: 150px; box-shadow: 0 8px 16px rgba(0,0,0,0.2); z-index: 1; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { display: block; padding: 0.5em; text-decoration: none; color: black; }
.dropdown-content a:hover { background-color: #ddd; }
