/* ACIM page specific styles */

h1 {
  margin-top: 30px;
  color: blue;
  text-align: center;
}

p {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  font-size: 1.1em;
  color: #444;
  text-align: left;
}

.recording-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 30px;
}

.recording-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1c1c1c;
  border-radius: 10px;
  padding: 0.75em 1em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.recording-row:hover {
  background: #252525;
}

.recording-main {
  flex: 1;
  margin-right: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.file-link {
  text-decoration: none;
  background-color: #4CAF50;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.file-link:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.file-desc {
  font-size: 0.9em;
  color: #999;
  margin-top: 6px;
  text-align: left;
  line-height: 1.4;
  max-width: 100%;
}

.recording-main {
flex: 1;
margin-right: 1em;
}

.recording-action {
  flex-shrink: 0;
}

.play-button {
  background: #333;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1em;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.3s;
}

.play-button:hover {
  background: #555;
}
