body {
    font-family: 'Roboto Mono', sans-serif;
    background-color: #333;
    color: #fff;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #6a0dad; 
    background-image: url('assets/images/abstrakt soundwaves.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    max-width: 1200px;
    margin: 0 auto;  

    color: white;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 600px) {
    .header-inner, .footer-inner {
      max-width: 100%;
      padding: 0.5rem;
    }
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #444;
    padding: 1rem;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    cursor: pointer;
}
.dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.dropdown-btn {
    background: linear-gradient(135deg, #f034d3, #c026a7); 
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(240, 52, 211, 0.3); 
    transition: filter 0.3s ease, transform 0.2s ease;
}

.dropdown-btn:hover {
    filter: brightness(1.1) saturate(1.2); 
    transform: scale(1.03);                
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 200px;
    z-index: 1;
    border-radius: 5px;
    margin-top: 5px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.dropdown-content li {
    list-style: none;
    padding: 10px;
    color: white;
    cursor: pointer;
}

.dropdown-content li:hover {
    background-color: #666;
}

.dropdown.show .dropdown-content {
    display: block;
}
.content {
    padding: 2rem;
}
.section {
    display: none;
    margin-bottom: 3rem;
}
.section.active {
    display: block;
}
#home {
    text-align: center;
}

#home ul {
text-align: left;       
display: inline-block;  
margin-top: 1rem;
}
a {
color: white; 
text-decoration: none; 
}

a:visited {
color: grey; 
}

a:hover {
color: whitesmoke; 
text-decoration: underline; 
}

a:active {
color: white; 
}
 h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.checklist-container {
    max-width: 800px;
    margin: 0 auto;
}
.checklist-item {
    padding: 12px;
    margin-bottom: 12px;
    background-color: #444;
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #f034d3;
    border-radius: 4px;
    margin-right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.checkbox.checked {
    background-color: #f034d3;
}
.checkbox.checked::after {
    content: "✓";
    color: white;
    font-weight: bold;
}
.checklist-text {
    flex: 1;
}
.category {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #f034d3;
    font-weight: bold;
}
.back-button {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #f034d3;
    border-radius: 4px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.centered-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem;
}
.tip-dropdown-btn {
    display: block;
    width: 100%;
    max-width: 50px;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    background: linear-gradient(135deg, #f034d3, #c026a7); 
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(240, 52, 211, 0.3); 
    transition: filter 0.3s ease, transform 0.2s ease;
}

.tip-dropdown-btn:hover {
    filter: brightness(1.1) saturate(1.2);
    transform: scale(1.03);
}
.tip-dropdown-content {
    display: none;
    position: relative;
    background-color: #555;
    width: 250px;
    height: 75px;
    white-space: normal; 
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    overflow-y: auto;
}

.risk-status {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.risk-completion {
    margin-left: 20px;
    font-size: 0.9em;
}

@media (max-width: 600px) {
  .risk-status {
    flex-direction: column;       
    align-items: center;          
    gap: 5px;                     
  }
  .risk-status img {
    margin-left: 0;               
  }
}

