/* Sidebar and transcribe page styles */
body.transcribe-layout {
  background: #f7f7f7;
  color: #222;
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', sans-serif;
  display: flex;
}
.sidebar {
  width: 320px;
  background: #ededed;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 2px 0 24px 0 #0001;
  padding: 32px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100vh;
}
.sidebar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.sidebar .nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.sidebar .nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 0 8px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.sidebar .nav a:hover {
  background: #b6ff3b;
  color: #222;
}
.sidebar .history-title {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
}
.sidebar .history-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar .history-item {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  color: #222;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar .history-item:hover {
  border: 1px solid #b6ff3b;
  background: #eaffb6;
}
.sidebar .history-date {
  font-size: 0.85rem;
  color: #000000;
  margin-bottom: 2px;
}
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 0 0 0;
}
.transcribe-box {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px #b6ff3b22;
  padding: 48px 36px 36px 36px;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.transcribe-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
}
.transcribe-desc {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-align: center;
}
.transcribe-form input[type="url"] {
  width: 340px;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #b6ff3b;
  font-size: 1.1rem;
  margin-bottom: 18px;
  background: #f7f7f7;
  color: #222;
}
.transcribe-form button {
  width: 100%;
  padding: 14px 0;
  background: #b6ff3b;
  color: #222;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.transcribe-form button:hover {
  background: #eaffb6;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f7f7f7;
  color: #222;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-container {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  padding: 40px 32px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b6ff3b;
  margin-bottom: 1.5rem;
}
.auth-form input {
  width: 100%;
  padding: 14px 12px;
  margin-bottom: 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  background: #f7f7f7;
  margin-left: 0;
  margin-right: -5px;
}
.auth-form button {
  width: 100%;
  padding: 14px 0;
  background: #b6ff3b;
  color: #222;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 0;
  margin-right: 0;
}
.auth-form button:hover {
  background: #eaffb6;
}
.auth-link {
  margin-top: 18px;
  display: block;
  color: #6a00ff;
  background-color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 8px;              /* added padding for nicer hit area */
  border-radius: 6px;            /* rounded corners on hover */
  transition: background-color 0.18s ease, color 0.18s ease;
}
.auth-link:hover {
  text-decoration: underline;
  background-color: #d5d5d5;     /* blue on hover */
  color: #ffffff;                /* white text for contrast */
  cursor: pointer;               /* pointer cursor on hover */
}
.error-message {
  color: #ff2323;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Adjust styles for the Transcribe tab */
.transcribe-tab {
    background-color: #ccff00; /* Bright lime green */
    color: black; /* Text color */
    font-size: 14px; /* Slightly smaller font size */
    padding: 5px 15px; /* Reduce padding for smaller height */
    border-radius: 5px; /* Rounded corners */
    text-align: center; /* Center text */
    display: inline-block; /* Inline block for layout */
    font-weight: bold; /* Bold text */
}

.transcribe-tab:hover {
    background-color: #b3e600; /* Slightly darker lime green on hover */
    cursor: pointer; /* Pointer cursor on hover */
}

/* Profile Card Style */
.profile-card-new {
  background: linear-gradient(135deg, #f0f4ff, #d9e6ff);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 40px 30px;
  max-width: 380px;
  text-align: center;
  color: #101c11;
}

.profile-card-new .avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #b6ff3b;
  margin-bottom: 16px;
}

.profile-card-new .user-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.profile-card-new .user-role {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

.profile-card-new .stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.profile-card-new .stat {
  background: rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 10px 170px;
  width: 30%;
}

.profile-card-new .stat span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
}

.profile-card-new .stat small {
  display: block;
  font-size: 0.75rem;
  color: #555;
}

.profile-card-new .renew-btn {
  background: #b6ff3b;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.profile-card-new .renew-btn:hover {
  background: #eaffb6;
}
