body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; display: flex; flex-direction: column; align-items: center; background-color: #f4f5f7; margin-top: 30px; color: #172b4d; }
.container { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; width: 95%; max-width: 650px; }
.filters { display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; text-align: left; background: #ebecf0; padding: 15px; border-radius: 5px; }
.filter-group { display: flex; flex-direction: column; gap: 5px; }
.filters label { font-size: 13px; font-weight: bold; color: #5e6c84; }
.filters input[type="text"], .filters textarea { padding: 8px; border: 1px solid #dfe1e6; border-radius: 3px; font-family: inherit; font-size: 13px; resize: vertical; }
.checkbox-container { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: #172b4d; }
.checkbox-label { display: flex; align-items: center; gap: 4px; background: white; padding: 4px 8px; border-radius: 4px; border: 1px solid #dfe1e6; cursor: pointer; user-select: none; }
.checkbox-label:hover { background: #f4f5f7; }
.btn-primary { display: inline-block; padding: 12px 24px; font-size: 16px; background-color: #0052cc; color: white; text-decoration: none; border-radius: 4px; cursor: pointer; border: none; font-weight: bold; width: 100%; max-width: 400px; margin: 0 auto; }
.btn-primary:hover { background-color: #003d99; }
.btn-primary:disabled { background-color: #a5adba; cursor: not-allowed; }
#wheel-wrapper { position: relative; margin: 30px 0; display: flex; justify-content: center;}
#pointer { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent; border-top: 30px solid #de350b; z-index: 10; }
#wheel-container { transition: transform 4s cubic-bezier(0.17, 0.67, 0.1, 1); border-radius: 50%; width: 400px; height: 400px; border: 5px solid #0747a6; }
#result { margin-top: 15px; font-size: 20px; font-weight: bold; min-height: 30px; }
#log { margin-top: 5px; color: #5e6c84; font-size: 13px; font-style: italic; }
.logout-link { margin-top: 30px; display: inline-block; color: #5e6c84; font-size: 12px; text-decoration: none; }
.logout-link:hover { text-decoration: underline; }