/* ✅ Button style */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
} 

/* ✅ Input fields */
input[type="url"],
input[type="email"],
input[type="password"],
input[type="text"],
textarea {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ✅ Success & Error messages */
.success {
    color: green;
    background: #d4ffd4;
    padding: 10px;
    border: 1px solid green;
    margin-bottom: 15px;
    border-radius: 4px;
}

.error {
    color: red;
    background: #ffe5e5;
    padding: 10px;
    border: 1px solid red;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* ✅ Link styles */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ✅ Container */
.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

/* ✅ Table style */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #f2f2f2;
}

/* ✅ Card box style */
.card {
    background: #f9f9f9;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* ✅ Referral Link Input */
.ref-link input {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    border: 1px dashed #999;
    background: #fff;
    font-family: monospace;
}

/* ✅ Table row coloring by status (optional use) */
.paid td {
    background-color: #d7ffd7;
}

.pending td {
    background-color: #fffbd7;
}

/* ✅ Optional: Anchor link button style */
a.button {
    display: inline-block;
    padding: 8px 14px;
    background-color: #28a745;
    color: white;
    border-radius: 4px;
    font-weight: bold;
}

a.button:hover {
    background-color: #218838;
}

/* Glowing Button Effect */
.btn-glow {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.8);
}

/* Scroll Fade Effect */
.feature-card, .step-box {
  opacity: 0;
  transform: translateY(30px);
}
.animate-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}
/* Glowing Button Effect */
.btn-glow {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.8);
}

/* Scroll Fade Effect */
.feature-card, .step-box {
  opacity: 0;
  transform: translateY(30px);
}
.animate-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}
