@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  position: relative;
}

.login-wrapper {
  width: 100%;
  max-width: 400px;
}

.login-container {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  -webkit-animation: slideUp 0.7s ease-out;
          animation: slideUp 0.7s ease-out;
}
@media (max-width: 480px) {
  .login-container {
    border-radius: 15px;
  }
}

@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.login-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 40px 30px;
  text-align: center;
  position: relative;
}
.login-header .home-link {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}
.login-header .home-link:hover {
  color: #fff !important;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}
.login-header h1 i {
  margin-right: 8px;
}
.login-header p {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 400;
}
@media (max-width: 480px) {
  .login-header {
    padding: 30px 20px;
  }
  .login-header h1 {
    font-size: 24px;
  }
}

.login-form {
  padding: 40px 30px;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.login-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.login-form .form-group label i {
  color: #2a5298;
  font-size: 13px;
}
.login-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #f7fafc;
  color: #333;
  font-family: "Poppins", sans-serif;
}
.login-form .form-group input:focus {
  outline: none;
  border-color: #2a5298;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
          box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}
.login-form .form-group input::-webkit-input-placeholder {
  color: #999;
}
.login-form .form-group input::-moz-placeholder {
  color: #999;
}
.login-form .form-group input:-ms-input-placeholder {
  color: #999;
}
.login-form .form-group input::-ms-input-placeholder {
  color: #999;
}
.login-form .form-group input::placeholder {
  color: #999;
}
.login-form .form-group input:hover {
  border-color: rgb(192.3863636364, 205.3409090909, 222.6136363636);
}
.login-form .form-group .password-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.login-form .form-group .password-wrapper input {
  width: 100%;
  padding-right: 45px;
}
.login-form .form-group .password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #2a5298;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.login-form .form-group .password-toggle:hover {
  color: #1e3c72;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.login-form .form-group .password-toggle:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.login-form .forgot-password {
  display: inline-block;
  font-size: 12px;
  color: #2a5298;
  text-decoration: none;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}
.login-form .forgot-password:hover {
  color: #1e3c72;
  text-decoration: underline;
}
.login-form .login-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
          box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
  position: relative;
  overflow: hidden;
}
.login-form .login-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.login-form .login-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
          box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
}
.login-form .login-button:hover::before {
  left: 100%;
}
.login-form .login-button i {
  margin-right: 8px;
}
.login-form .signup-text {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}
.login-form .signup-text a {
  color: #2a5298;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.login-form .signup-text a:hover {
  color: #1e3c72;
  text-decoration: underline;
}
@media (max-width: 480px) {
  .login-form {
    padding: 30px 20px;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.body-sigup-login {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  position: relative;
}

.signup-wrapper {
  width: 100%;
  max-width: 500px;
}

.signup-container {
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  -webkit-animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
          animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.signup-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  color: #fff;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}
.signup-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  -webkit-animation: fadeIn 0.8s ease-out;
          animation: fadeIn 0.8s ease-out;
  position: relative;
  z-index: 1;
}
.signup-header h1 i {
  margin-right: 8px;
}
.signup-header p {
  font-size: 15px;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.3px;
  -webkit-animation: fadeIn 1s ease-out 0.1s both;
          animation: fadeIn 1s ease-out 0.1s both;
  position: relative;
  z-index: 1;
}

.signup-form {
  padding: 45px 40px;
}
.signup-form .form-group {
  margin-bottom: 24px;
  -webkit-animation: fadeIn 0.8s ease-out;
          animation: fadeIn 0.8s ease-out;
}
.signup-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.signup-form .form-group label i {
  color: #667eea;
  font-size: 13px;
  width: 16px;
}
.signup-form .form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f7fafc;
  color: #333;
  font-weight: 500;
}
.signup-form .form-group input:hover {
  border-color: rgb(209.1931818182, 218.6704545455, 231.3068181818);
  background: #fff;
}
.signup-form .form-group input:focus {
  outline: none;
  border-color: #667eea;
  background: #fff;
  -webkit-box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
          box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}
.signup-form .form-group input::-webkit-input-placeholder {
  color: #a0aec0;
  font-weight: 400;
}
.signup-form .form-group input::-moz-placeholder {
  color: #a0aec0;
  font-weight: 400;
}
.signup-form .form-group input:-ms-input-placeholder {
  color: #a0aec0;
  font-weight: 400;
}
.signup-form .form-group input::-ms-input-placeholder {
  color: #a0aec0;
  font-weight: 400;
}
.signup-form .form-group input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}
.signup-form .form-group .password-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.signup-form .form-group .password-wrapper input {
  width: 100%;
  padding-right: 45px;
}
.signup-form .form-group .password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #2a5298;
  cursor: pointer;
  font-size: 14px;
  padding: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.signup-form .form-group .password-toggle:hover {
  color: #1e3c72;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.signup-form .form-group .password-toggle:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.signup-form .form-group .password-hint {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  font-weight: 500;
}
.signup-form .form-group .password-hint i {
  margin-right: 4px;
  color: #667eea;
}
.signup-form .form-checkbox {
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -webkit-animation: fadeIn 0.8s ease-out;
          animation: fadeIn 0.8s ease-out;
}
.signup-form .form-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #667eea;
}
.signup-form .form-checkbox label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  cursor: pointer;
}
.signup-form .form-checkbox label .link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.signup-form .form-checkbox label .link:hover {
  color: #764ba2;
  text-decoration: underline;
}
.signup-form .signup-button {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  -webkit-box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
          box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
}
.signup-form .signup-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.signup-form .signup-button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
          box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
.signup-form .signup-button:hover::before {
  left: 100%;
}
.signup-form .signup-button:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.signup-form .signup-button i {
  margin-right: 8px;
}
.signup-form .login-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.3px;
}
.signup-form .login-text a {
  color: #667eea;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.signup-form .login-text a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea, #764ba2);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.signup-form .login-text a:hover {
  color: #764ba2;
}
.signup-form .login-text a:hover::after {
  width: 100%;
}

@media (max-width: 480px) {
  .signup-wrapper {
    max-width: 100%;
  }
  .signup-header {
    padding: 40px 30px;
  }
  .signup-header h1 {
    font-size: 28px;
  }
  .signup-header p {
    font-size: 14px;
  }
  .signup-form {
    padding: 35px 25px;
  }
  .signup-form .form-group {
    margin-bottom: 20px;
  }
  .signup-form .form-group label {
    font-size: 13px;
  }
  .signup-form .form-group input {
    padding: 13px 14px;
    font-size: 16px;
  }
  .signup-form .form-group .password-hint {
    font-size: 11px;
  }
  .signup-form .form-checkbox {
    margin-bottom: 24px;
    font-size: 13px;
  }
  .signup-form .form-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
  }
  .signup-form .signup-button {
    padding: 13px 16px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .signup-form .login-text {
    font-size: 13px;
  }
}
/* =====================
   Base
===================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.favorite-body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* =====================
   Header
===================== */
header {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

/* =====================
   Container
===================== */
.favorites-container {
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow-x: hidden;
}
.favorites-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(transparent));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .favorites-container {
    padding: 1rem;
  }
}

.back-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8f9fa;
  text-decoration: none;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.back-button:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  color: #f8f9fa;
}
.back-button i {
  font-size: 1.1rem;
}

.favorites-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.favorites-header h1 {
  color: #f8f9fa;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.favorites-header h1 i {
  color: #f72585;
  margin-right: 0.5rem;
}
@media (max-width: 992px) {
  .favorites-header h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .favorites-header h1 {
    font-size: 2rem;
  }
}
.favorites-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .favorites-header p {
    font-size: 1rem;
  }
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .favorites-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (max-width: 768px) {
  .favorites-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.favorite-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.favorite-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#f72585), to(#4361ee));
  background: linear-gradient(90deg, #f72585, #4361ee);
  border-radius: 16px 16px 0 0;
}
.favorite-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.favorite-card:hover .favorite-card-header .remove-favorite-btn {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.favorite-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.favorite-card-header .favorite-city-name {
  color: #f8f9fa;
  font-size: 1.5rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.favorite-card-header .favorite-city-name::before {
  content: "📍";
  font-size: 1.2rem;
}
.favorite-card-header .remove-favorite-btn {
  background: rgba(247, 37, 133, 0.2);
  border: none;
  color: #f72585;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.7;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.favorite-card-header .remove-favorite-btn:hover {
  background: rgba(247, 37, 133, 0.3);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.favorite-card-header .remove-favorite-btn i {
  font-size: 0.9rem;
}
.favorite-card-content {
  color: #f8f9fa;
}
.favorite-card-content .favorite-temp {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  background: linear-gradient(45deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .favorite-card-content .favorite-temp {
    font-size: 3rem;
  }
}
.favorite-card-content .favorite-weather {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.favorite-card-content .favorite-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 480px) {
  .favorite-card-content .favorite-details {
    grid-template-columns: 1fr;
  }
}
.favorite-card-content .favorite-details .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.favorite-card-content .favorite-details .detail-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.favorite-card-content .favorite-details .detail-label i {
  color: #f72585;
}
.favorite-card-content .favorite-details .detail-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  margin: 2rem auto;
  max-width: 500px;
}
.empty-state i {
  font-size: 4rem;
  color: #f72585;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.empty-state h2 {
  color: #f8f9fa;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.empty-state p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.empty-state .btn-warning {
  background: #f72585;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.empty-state .btn-warning:hover {
  background: rgb(224.7522123894, 8.2477876106, 107.2212389381);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
          box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #f72585;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
[style*="font-size: 2rem"] {
  font-size: 2.5rem !important;
  display: inline-block;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media (max-width: 992px) {
  .favorites-container {
    padding: 1.5rem;
  }
  .favorites-header h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .favorites-container {
    padding: 1rem;
  }
  .favorites-header {
    margin-bottom: 2rem;
  }
  .favorites-header h1 {
    font-size: 2rem;
  }
  .favorites-header p {
    font-size: 0.9rem;
  }
  .back-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .favorite-card {
    padding: 1.25rem;
  }
  .favorite-card-header .favorite-city-name {
    font-size: 1.3rem;
  }
  .favorite-card .favorite-temp {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .favorites-header h1 {
    font-size: 1.75rem;
  }
  .favorite-card {
    padding: 1rem;
  }
  .favorite-card .favorite-details {
    grid-template-columns: 1fr;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.toggle {
  display: none;
}

#concel-menu {
  display: none;
}

/* Weather App Color Variables */
/* Weather App Color Variables */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #2196f3;
  padding: 12px 20px;
  color: white;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid white;
}
header .logo h2 {
  color: white;
  display: block;
}
header form {
  width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header form .btn-outline-success {
  background-color: #0C4E72;
  color: white;
}
header form .btn-outline-success::hover {
  background-color: #2C5282;
}
header .header-action {
  gap: 20px;
}

/* Weather App Color Variables */
nav {
  padding: 12px;
  padding-top: 80px;
  background-color: #2196f3;
  width: 20%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
nav ul {
  list-style: none;
  gap: 12px;
}
nav ul .nav-link {
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  color: white;
  font-weight: 600;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
nav ul .nav-link.active {
  background-color: #4fa3ff;
  color: #ffffff;
}
nav ul .nav-link:hover {
  background-color: #4fa3ff;
}

/* Weather App Color Variables */
/* Weather App Color Variables */
.weather-body {
  background-color: #eaf6ff;
}

main {
  padding-top: 40px;
  width: 100%;
  margin-left: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  height: 80vh;
  overflow-y: auto;
}
main .current-weather-section {
  width: 100%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  padding: 20px;
  border-radius: 10px;
}
main .current-weather-section .current-weather-card {
  width: 100%;
  color: #2c3e50;
}
main .current-weather-section .current-weather-card .current-weather-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main .current-weather-section .current-weather-card .current-weather-header .city-name {
  color: #2c3e50;
}
main .current-weather-section .current-weather-card .current-temp {
  font-size: 56px;
  font-weight: 600;
}
main .current-weather-section .current-weather-card .weather-condiction {
  color: #A0AEC0;
  font-size: 20px;
  font-weight: 500;
}
main .current-weather-section .current-weather-card .current-weather-content {
  border-bottom: 1px solid #A0AEC0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main .current-weather-section .current-weather-card .current-weather-content .weather-icon {
  width: 90px;
  height: 90px;
  margin: 12px;
}
main .current-weather-section .current-weather-card .weather-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid gray;
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin-top: 20px;
}
main .current-weather-section .current-weather-card .weather-details .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
main .current-weather-section .current-weather-card .weather-details .detail-item i {
  font-size: 24px;
}
main .current-weather-section .current-weather-card .weather-basetime-item {
  width: 100%;
  border-collapse: collapse;
}
main .current-weather-section .current-weather-card .weather-basetime-item thead {
  border-bottom: 1px solid gray;
}
main .current-weather-section .current-weather-card .weather-basetime-item td, main .current-weather-section .current-weather-card .weather-basetime-item th {
  padding: 6px 8px;
}
main .current-weather-section {
  color: #2c3e50;
}
main .current-weather-section .weather-hourly {
  width: 100%;
}
main .current-weather-section .weather-hourly table {
  border-collapse: collapse;
  width: 100%;
}
main .current-weather-section .weather-hourly table thead {
  border-bottom: 1px solid gray;
}
main .current-weather-section .weather-hourly table th, main .current-weather-section .weather-hourly table td {
  padding: 6px 8px;
}
main .current-weather-section .days-forecast-weather {
  width: 100%;
}
main .current-weather-section .days-forecast-weather table {
  border-collapse: collapse;
  width: 100%;
}
main .current-weather-section .days-forecast-weather table thead {
  border-bottom: 1px solid gray;
}
main .current-weather-section .days-forecast-weather table th, main .current-weather-section .days-forecast-weather table td {
  padding: 6px 8px;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background-color: rgba(146, 145, 145, 0.867);
  display: none;
}

.overlay.loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.overlay-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(200, 200, 200, 0.822);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay-menu.active {
  z-index: 98;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 840px) {
  .toggle {
    display: block;
  }
  header .logo h2 {
    font-size: 20px;
  }
  header form {
    width: 300px;
    gap: 8px;
  }
  header .toggle {
    font-size: 24px;
  }
  nav, main {
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
  nav {
    z-index: 999;
    padding-top: 90px;
    left: -100%;
    width: 25%;
  }
  nav.active {
    left: 0;
  }
  main {
    position: relative;
    left: -10%;
  }
  main.active {
    left: 28px;
  }
  .current-weather-section {
    padding: 0;
  }
}
@media (max-width: 430px) {
  body {
    margin: 0;
    padding: 0;
  }
  form {
    position: fixed;
    top: 80px;
    left: 64px;
    -webkit-box-shadow: 0 0 8px grey;
            box-shadow: 0 0 8px grey;
  }
  main {
    width: 428px;
    margin: 0;
    left: 0;
    top: 30px;
    border-radius: 4px;
  }
  section {
    padding: 0;
    border-radius: 4px;
  }
  nav.active {
    width: 50%;
    z-index: 99999;
  }
  main.active {
    left: 0;
  }
  #concel-menu {
    display: block;
    position: absolute;
    top: 20px;
    left: 10px;
    color: white;
    font-size: 24px;
  }
  th {
    font-size: 14px;
    font-weight: 500;
  }
  td {
    font-size: 12px;
    font-weight: 500;
  }
}/*# sourceMappingURL=style.css.map */