/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(
    135deg,
    #0d1e4c,
    #0b1b32,
    #26415e,
    #83a6ce,
    #c48cb3,
    #e5c9d7
  );
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  font-family: "Arial", sans-serif;
  color: #c48cb3;
  display: flex;
  justify-content: center;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.wrapper {
  padding: 0.5rem;
}

h2 {
  margin-bottom: 1rem;
}

/* Container Styles */

#sitemap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.container {
  background: linear-gradient(
    135deg,
    #0d1e4c,
    #0b1b32,
    #26415e,
    #83a6ce,
    #c48cb3,
    #e5c9d7
  );
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  width: 100%;
  margin: 1rem 0;
  color: #fff;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  border-radius: 15px;
}

/* Heading Styles */
.container h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

input[type="text"],
input[type="number"],
textarea {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #83a6ce;
  background-color: rgba(255, 255, 255, 0.3);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Button Styles */
.submit-btn {
  background: #26415e;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.submit-btn:hover {
  background-color: #c48bb3;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Status Styles */
h3 {
  padding: 1.2rem 0 0;
}

.status {
  margin-top: 0.5rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.skipedLink {
  height: 12rem;
  overflow-y: scroll;
  margin-bottom: 1rem;
}

.crl-cmpt {
  text-align: left;
  margin-bottom: 10px;
}

.siteview-dwnld {
  text-align: left;
}

.siteview-dwnld a {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  background-image: linear-gradient(135deg, #c48bb3 50%, #26415e 50%);
  background-size: 275% 200%;
  background-position: bottom right;
  transition: background-position 0.7s ease;
}

.siteview-dwnld a:hover {
  background-position: top left;
}

/* Features Section */
.container.features {
  max-width: none;
  background: linear-gradient(
    -25deg,
    #0d1e4c,
    #0b1b32,
    #26415e,
    #83a6ce,
    #c48cb3,
    #e5c9d7
  );
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.col-md-6 {
  flex: 1 1 calc(50% - 1rem);
  display: flex;
}

.list-group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column; 
  flex: 1; 
}

.list-group-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.list-group-item strong {
  color: var(--accent-blue);
}

/* How to Use Section */
.how-to-use {
  max-width: none;
}

.col-md-12 {
  width: 100%;
}

.list-group-numbered {
  counter-reset: step-counter;
}

.list-group-numbered .list-group-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background: var(--accent-purple);
  color: var(--text-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
