/* ===============================
   MLMPortal.in Custom Styles
   =============================== */

/* Body base */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Links */
a {
    transition: color 0.3s ease, background-color 0.3s ease;
}

a:hover {
    color: #2563EB; /* Tailwind blue-600 */
}

/* Buttons */
.btn, button {
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Hero Section */
#hero_title {
    line-height: 1.2;
}

#hero_text {
    max-width: 700px;
    margin: 0 auto;
}

/* Features Cards */
#features .p-6 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .p-6:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Footer links */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #60A5FA; /* Tailwind blue-400 */
}

/* Forms */
input, textarea, select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #CBD5E1; /* Tailwind gray-300 */
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #E5E7EB; /* Tailwind gray-200 */
    text-align: left;
}

th {
    background-color: #F3F4F6; /* Tailwind gray-100 */
    font-weight: 600;
}

/* Blog cards */
.blog-card {
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Respons*
