/* Site-specific styles for MyDJ Server */

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

h2 {
    font-size: 1.3em;
}

h3 {
    font-size: 1.1em;
}

a {
    color: #0e4fa3;
}

a:hover {
    color: #3e7fd3;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}

/* Custom styles for MyDJ Server */
.main-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  padding: 40px;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.logo {
  font-size: 3em;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 20px;
}

.subtitle {
  color: #666;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.status {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.status-item:last-child {
  border-bottom: none;
}

.status-label {
  font-weight: 500;
  color: #333;
}

.status-value {
  color: #28a745;
  font-weight: bold;
}

.api-links {
  margin-top: 30px;
}

.api-link {
  display: inline-block;
  background: #667eea;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  margin: 5px;
  transition: background 0.3s ease;
}

.api-link:hover {
  background: #5a6fd8;
  color: white;
  text-decoration: none;
}

.footer {
  margin-top: 30px;
  color: #666;
  font-size: 0.9em;
}
