AirPods Pro with Magsafe Charging Case - (1st Generation)
/* Style the accordion buttons */ .accordion { background-color: #007bff; /* Bright Blue */ color: #ffffff; /* White text */ cursor: pointer; padding: 18px; width: 100%; text-align: left; border: none; outline: none; transition: 0.3s; font-size: 16px; font-weight: bold; border-radius: 5px; box-sizing: border-box; margin-bottom: 5px; } /* Hover effect */ .accordion:hover { background-color: #0056b3; /* Darker Blue */ } /* Active accordion button */ .active { background-color: #004080; /* Even darker blue */ } /* Style for active and default icons */ .accordion:after { content: '\002B'; /* Plus sign */ color: #ffffff; /* White icon */ font-weight: bold; float: right; margin-left: 5px; } .active:after { content: "\2212"; /* Minus sign */ font-size: 18px; color: #ffffff; /* White icon */