/* General styles */
.speakeasy-button {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #2f4858;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.speakeasy-button:hover,
.speakeasy-button:focus {
  background-color: #005a94;
  border: 1px solid #005a94;
  outline: none;
}

.speakeasy-button:active {
  background-color: #004b7a;
}

.speakeasy-voice-select {
  margin: 5px;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.speakeasy-link {
  font-size: 16px;
  color: #2f4858;
  text-decoration: underline;
  cursor: pointer;
}

.speakeasy-link.speaking {
  color: #2f4858;
  text-decoration: none;
  font-weight: bold;
}

/* Media Player Style */
.speakeasy-media-player {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.speakeasy-media-player p {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  font-size: 14px;
}

.speakeasy-media-player .speakeasy-button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.speakeasy-media-player .speakeasy-button svg {
  fill: #2f4858;
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

.speakeasy-media-player .speakeasy-button:hover svg,
.speakeasy-media-player .speakeasy-button:focus svg {
  fill: #2f4858;
}

.speakeasy-media-player .speakeasy-button:focus,
.speakeasy-media-player .speakeasy-button:hover {
  outline: 2px solid #2f4858;
}

.speakeasy-media-player-wrapper {
  border: 1px solid #2f4858;
  display: flex; 
}

.speakeasy-settings select,
.speakeasy-settings input {
  display: block;
  width: 11%;
}

.speakeasy-settings label {
  font-size: 14px;
}

.speakeasy-button:focus,
.speakeasy-button:hover,
.speakeasy-link:focus {
  outline: 2px dashed #2f4858;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .speakeasy-button {
    width: 100%;
    margin: 5px 0;
  }

  .speakeasy-voice-select {
    width: 100%;
  }

  .speakeasy-media-player {
    flex-direction: column;
    align-items: flex-start;
  }

  .speakeasy-media-player .speakeasy-button {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .speakeasy-media-player-wrapper{
    padding: 0 8px;
  }
  .speakeasy-media-player .speakeasy-button {
    padding: 3px;
    margin: 2px;
  }
  .speakeasy-media-player .speakeasy-button svg{
    width: 20px;
    height: 20px;
  }
}
