/* Buttons css */

/* Simple Button */
.simple-button {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
}

/* Simple Hover */
.simple-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}

.simple-hover:hover {
  background-color: blue;
  cursor: pointer;
}

/* Slide-Up Hover */
.slide-up-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: transform 0.5s ease;
  transform: translateY(0);
}

.slide-up-hover:hover {
  transform: translateY(-10px);
  cursor: pointer;
}

/* Grow Hover */
.grow-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.grow-hover:hover {
  transform: scale(1.2);
  cursor: pointer;
}

/* Rotate Hover */
.rotate-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: transform 0.5s ease;
  transform: rotate(0deg);
}

.rotate-hover:hover {
  transform: rotate(45deg);
  cursor: pointer;
}
/* Outline Hover */
.outline-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: rgb(255, 255, 255);
  border: 2px solid lightblue;
  border-radius: 5px;
  transition: border-color 0.5s ease;
}

.outline-hover:hover {
  border-color: rgb(0, 0, 0);
  cursor: pointer;
}

/* Shadow Hover */
.shadow-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: box-shadow 0.5s ease;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
}

.shadow-hover:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Background Color Hover */
.bg-color-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.5s ease;
}

.bg-color-hover:hover {
  background-color: lightblue;
  cursor: pointer;
}

/* Background Gradient Hover */
.bg-gradient-hover {
  padding: 10px 20px;
  background: linear-gradient(to right, rgb(65, 65, 255), lightblue);
  color: white;
  border: none;
  border-radius: 5px;
  transition: background 0.5s ease;
}

.bg-gradient-hover:hover {
  background: linear-gradient(to right, lightblue, rgb(65, 65, 255));
  cursor: pointer;
}

/* Underline Hover */
.underline-hover {
  padding: 10px 20px;
  background-color: transparent;
  color: rgb(65, 65, 255);
  border: none;
  border-radius: 5px;
  transition: border-bottom 0.5s ease;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.underline-hover:hover {
  border-bottom: 2px solid rgb(65, 65, 255);
  cursor: pointer;
}

/* Swap Color Hover */
.swap-color-hover {
  padding: 10px 20px;
  background-color: rgb(65, 65, 255);
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.swap-color-hover:hover {
  background-color: white;
  color: rgb(65, 65, 255);
  cursor: pointer;
}

/* Code-Snippet css */
/* Code-Snippet css */

pres {
  background-color: lightgray;
  padding: 20px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
  overflow-x: auto;
}

codes {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  white-space: pre-wrap;
}

/* Cards CSS */
/* Cards CSS */

/* Default Card */

.card {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-color: #ffffff;
  max-width: 400px;
  margin: 20px;
  padding: 20px;
}
.card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}

/* Normal Card */

.simple-card {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-color: #ffffff;
  max-width: 400px;
  margin: 20px;
  padding: 20px;
}
.simple-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.simple-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.simple-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}

/* Boderless Card */

.borderless-card {
  box-shadow: none;
  background-color: #ffffff;
  max-width: 400px;
  margin: 20px;
  padding: 20px;
  border: none;
}
.borderless-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.borderless-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}
.borderless-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}

/* Gradient Card */

.gradient-card {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-color: #ffffff;
  max-width: 400px;
  margin: 20px;
  padding: 20px;
  background: linear-gradient(to bottom right, #FF416C, #FF4B2B);
  color: #ffffff;
}
.gradient-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.gradient-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.gradient-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

/* Profile card */

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 10px;
}
.product-card-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.product-card-info-title {
  font-size: 18px;
  font-weight: bold;
}
.product-card-info-price {
  font-size: 18px;
  font-weight: bold;
  color: #8BC34A;
}
.product-card-description {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}


/* Profile Card */

.profile-card {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-color: #f5f5f5;
  max-width: 400px;
  margin: 20px;
  padding: 20px;
}
.profile-card-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.profile-card-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
}
.profile-card-email {
  font-size: 14px;
  color: #555555;
  margin-bottom: 20px;
}
.profile-card-description {
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 20px;
}


