﻿body {
    background: linear-gradient(135deg, #BE93DF 0%, #A45EE5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* container and header */
.sheets-container {
  padding: 15px;
  width: 90vw;
  max-width: 1400px;
}

.sheets-card {
  background: linear-gradient(135deg, #ffffff 0%, #a89999 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.sheets-header {
    background: linear-gradient(135deg, #663046 0%, #9867C5 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.sheets-body {
  padding: 2rem;
}

/** regular button **/
.sheets-button-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.sheets-button {
  background: linear-gradient(135deg, #67032F 0%, #B65FCF 100%);
  border: none;
  color: white;
  padding: 0.75rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sheets-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(107, 114, 128, 0.4);
  color: white;
}

.sheets-button:active {
  transform: translateY(0);
}

/* new button */
.btn-new {
  background: linear-gradient(135deg, #cce7c9 0%, #276221 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  color: white;
  text-decoration: none;
}

.btn-new:active {
  transform: translateY(0);
}

/* Button styling */
.btn-back {
  background: linear-gradient(135deg, #ffb3b3 0%, #ff2424 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: white;
  text-decoration: none;
}

.btn-back:active {
  transform: translateY(0);
}

/* Loading/empty state */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-style: italic;
}

.empty-state h3 {
  color: #374151;
  margin-bottom: 10px;
}

/* old styles */

.entryLabelDescription {
  font-size: 8pt;
}

.textBoxErrorMessage {
  background-color: red;
  color: white;
}

/* Timesheet status styles */
input.draft {
  background-color: rgba(241, 100, 100, 0.81);
}

input.submitted {
  background-color: rgba(76, 255, 0, 0.62);
}
