/* static/css/home.css */

/* Homepage Logo */
.logo-home {
  margin: 80px 0 10px;
  text-align: center;
}

.logo-img-large {
  max-width: 280px;
  height: auto;
}

/* Auth Buttons (homepage only) */
.auth-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.auth-button {
  padding: 10px 20px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}
.auth-button:hover {
  background-color: darkred;
}

/* Forgot Password Link */
.forgot-link {
  text-align: right;
  margin-bottom: 10px;
  font-size: 0.9em;
}
.forgot-link a {
  color: #007BFF;
  text-decoration: underline;
}
.forgot-link a:hover {
  color: #0056b3;
}

/* Position & style the upload button container */
.upload-trigger-container {
display: flex;
justify-content: center;   /* center horizontally */
margin: 20px 0;            /* 30px top & bottom */
}

/* Tweak the button look */
.upload-button {
background: black;
border: none;
border-radius: 4px;
padding: 10px;
cursor: pointer;
transition: background 0.2s;
}
.upload-button:hover {
transform: scale(1.1);
}

/* Size your icon */
.upload-button-img {
max-width: 125px;
}
/* End of Upload Folder Image Style on Homepage */

/* Source chooser buttons */
.source-buttons-upload {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.modal-btn-upload {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.modal-btn-upload img {
  width: 60px;        /* adjust as you like */
  height: auto;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.modal-btn-upload img:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* If you still use a picker-grid elsewhere */
.picker-grid-upload {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px,1fr));
  gap: 10px;
  margin: 20px 0;
}
.picker-grid-upload img {
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
}
.picker-grid-upload img:hover {
  transform: scale(1.05);
  }

