* {
  box-sizing: border-box;
}

body {
   font-family: Arial, sans-serif;
   margin: 0;
}

.auth-screen {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgb(46, 37, 37) 0%, rgb(70, 60, 60) 100%);
}

.auth-box {
  background: white;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 90%;
}

.auth-box h1 {
  margin-top: 0;
  color: rgb(46, 37, 37);
  font-size: 2em;
}

.auth-box input {
  width: 100%;
  padding: 15px;
  font-size: 1.3em;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 15px 0;
}

.auth-box button {
  width: 100%;
  padding: 16px;
  font-size: 1.2em;
  background-color: rgb(100, 200, 255);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  font-family: Arial, sans-serif;
}

.auth-box button:hover {
  background-color: rgb(80, 180, 255);
}

.auth-box button.secondary-btn {
  background-color: rgb(150, 150, 150);
}

.auth-box button.secondary-btn:hover {
  background-color: rgb(130, 130, 130);
}

#auth-message {
  color: green;
  font-weight: bold;
  text-align: center;
}

.auth-box hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.app-screen {
  width: 100%;
  height: 100vh;
}

.content {
    width: calc(100% - 60px);
    height: 100vh;
    overflow-y: auto;
    padding: 0;
}

.container {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    height: 100vh;
}

.sidebar {
    width: 60px;
    height: 100%;
    background-color: rgb(46, 37, 37);
    transition: width 0.3s ease;
    font-size: 1.2em;
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.sidebar.active {
    width: 250px;
}

.sidebar-icon {
    display: block;
    padding: 15px;
    color: white;
    font-size: 1.5em;
    text-align: center;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    display: none;
}

.sidebar.active .sidebar-menu {
    display: block;
}

.sidebar-menu li {
    padding: 15px 20px;
    color: white;
}

.sidebar-menu a {
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar-menu a:hover {
    background-color: rgb(70, 60, 60);
    border-left: 3px solid rgb(100, 200, 255);
}

#weather-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#weather-container h1 {
    font-size: 2.5em;
    margin: 20px 0;
}

#weather-container p {
    font-size: 1.5em;
    margin: 15px 0;
    line-height: 1.6;
}

.notes-input {
    display: flex;
    gap: 10px;
    margin: 20px;
}

.notes-input input {
    flex: 1;
    padding: 10px;
    font-size: 1.2em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.notes-input button {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: rgb(100, 200, 255);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#notes-list {
    padding: 20px;
}

.note-item {
    background-color: transparent;
    padding: 10px 0;
    margin: 8px 0;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.note-item p {
    margin: 0;
    font-size: 1.1em;
    flex: 1;
}

.note-item button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 0.9em;
}

.note-item button:hover {
    background-color: #ff5252;
}

#content h1 {
    font-size: 2em;
    margin: 20px;
}

@media (max-width: 600px) {
  .auth-box {
    padding: 20px;
  }
  
  .notes-input {
    flex-direction: column;
    margin: 15px;
  }
}