/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

body {
    background-color: #121319;
    color: #f5f5f7;
    line-height: 1.6;
    overflow-x: hidden;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    animation: slideInUp 0.8s ease forwards;
}

.slide-right {
    animation: slideInRight 0.8s ease forwards;
}

.slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

/* Header and Navigation */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(18, 19, 25, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeIn 0.6s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    background-color: #7c3aed;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(5deg) scale(1.1);
}

.brand-name {
    font-weight: bold;
    font-size: 20px;
    color: white;
}

nav {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s linear;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #7c3aed;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    border: 1px solid #7c3aed;
    background: transparent;
    color: #7c3aed;
}

.btn-primary {
    background: #7c3aed;
    color: white;
    border: none;
}

.btn-outline:hover {
    background-color: rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    background-color: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.5);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    z-index: -1;
    filter: blur(80px);
    animation: pulse 8s infinite ease-in-out;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #7c3aed;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-description {
    color: #a1a1aa;
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
}

/* Code Editor */
.code-editor {
    background-color: #1e1e2e;
    border-radius: 8px;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.6s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.code-editor:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.editor-header {
    display: flex;
    padding: 10px;
    background-color: #252631;
}

.window-controls {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-red {
    background-color: #ff5f56;
}

.control-yellow {
    background-color: #ffbd2e;
}

.control-green {
    background-color: #27c93f;
}

.editor-title {
    color: #a1a1aa;
    font-size: 14px;
    font-family: monospace;
}

.editor-content {
    padding: 20px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.5;
    color: #e4e4e7;
    max-height: 450px;
    overflow-y: auto;
}

.typing-animation .line {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(40, end);
}

.editor-content .keyword {
    color: #ff79c6;
}

.editor-content .function {
    color: #50fa7b;
}

.editor-content .string {
    color: #f1fa8c;
}

.editor-content .property {
    color: #8be9fd;
}

.editor-content .comment {
    color: #6272a4;
}

/* Features Section */
.features {
    padding: 80px 40px;
    text-align: center;
}

.section-tag {
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: rgba(30, 30, 46, 0.6);
    border-radius: 8px;
    width: 300px;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--card-index, 1));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-content {
    padding: 25px 20px;
}

.feature-icon {
    background-color: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-subtitle {
    color: #a1a1aa;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Team Section */
.team {
    padding: 80px 40px;
    text-align: center;
}

.agents-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.agent-card {
    background-color: rgba(30, 30, 46, 0.6);
    border-radius: 8px;
    width: 250px;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: calc(0.2s * var(--card-index, 1));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.agent-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #7c3aed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-card:hover .agent-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.7);
}

.agent-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.agent-role {
    color: #a1a1aa;
    font-size: 15px;
    margin-bottom: 15px;
}

.agent-command {
    font-family: monospace;
    background-color: rgba(18, 19, 25, 0.7);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #a1a1aa;
}

/* Network Background Animation */
.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.node {
    position: absolute;
    background-color: #7c3aed;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(3px);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.8);
}

.node-1 {
    width: 18px;
    height: 18px;
    top: 15%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.node-2 {
    width: 22px;
    height: 22px;
    top: 25%;
    left: 25%;
    animation: float2 10s ease-in-out infinite;
}

.node-3 {
    width: 16px;
    height: 16px;
    top: 10%;
    left: 40%;
    animation: float3 7s ease-in-out infinite;
}

.node-4 {
    width: 20px;
    height: 20px;
    top: 35%;
    left: 70%;
    animation: float1 9s ease-in-out infinite;
}

.node-5 {
    width: 24px;
    height: 24px;
    top: 20%;
    left: 85%;
    animation: float2 12s ease-in-out infinite;
}

.node-6 {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 15%;
    animation: float3 11s ease-in-out infinite;
}

.node-7 {
    width: 22px;
    height: 22px;
    top: 45%;
    left: 55%;
    animation: float1 10s ease-in-out infinite;
}

.node-8 {
    width: 20px;
    height: 20px;
    top: 60%;
    left: 80%;
    animation: float2 9s ease-in-out infinite;
}

.connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.4));
    height: 2px;
    transform-origin: 0 0;
    opacity: 0.4;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.connection-1 {
    width: 220px;
    top: 17%;
    left: 11%;
    transform: rotate(25deg);
}

.connection-2 {
    width: 180px;
    top: 26%;
    left: 25%;
    transform: rotate(-15deg);
}

.connection-3 {
    width: 240px;
    top: 10%;
    left: 41%;
    transform: rotate(10deg);
}

.connection-4 {
    width: 200px;
    top: 35%;
    left: 28%;
    transform: rotate(45deg);
}

.connection-5 {
    width: 270px;
    top: 21%;
    left: 65%;
    transform: rotate(-5deg);
}

.connection-6 {
    width: 220px;
    top: 48%;
    left: 17%;
    transform: rotate(30deg);
}

.connection-7 {
    width: 180px;
    top: 46%;
    left: 56%;
    transform: rotate(-20deg);
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 25px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 15px); }
    100% { transform: translate(0, 0); }
}

@keyframes float3 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(25px, -20px); }
    100% { transform: translate(0, 0); }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    padding: 80px 40px;
    text-align: center;
    margin-top: 40px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    background-color: white;
    color: #7c3aed;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 16px;
}

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #1a1b26;
    padding: 60px 40px 30px;
    color: #a1a1aa;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #a1a1aa;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

/* Auth Forms */
.auth-container {
    max-width: 500px;
    margin: 60px auto;
    background-color: rgba(30, 30, 46, 0.6);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.auth-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(18, 19, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

.form-text {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #a1a1aa;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: #6d28d9;
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 40px;
    color: #a1a1aa;
    font-size: 14px;
}

/* Dashboard */
.dashboard {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: #1a1b26;
    padding: 20px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: rgba(124, 58, 237, 0.1);
    color: white;
    border-left-color: #7c3aed;
}

.sidebar-nav a svg {
    margin-right: 12px;
}

.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user-welcome h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.user-welcome p {
    color: #a1a1aa;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.dashboard-card {
    background-color: rgba(30, 30, 46, 0.6);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background-color: rgba(18, 19, 25, 0.5);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #a1a1aa;
    font-size: 14px;
}

/* Tables */
.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 12px 20px;
    background-color: rgba(18, 19, 25, 0.7);
    color: white;
    font-weight: 600;
}

td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

tr:hover td {
    background-color: rgba(18, 19, 25, 0.3);
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background-color: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

.status-inactive {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.status-pending {
    background-color: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 30px;
    }

    .features-grid, .agents-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-card, .agent-card {
        width: calc(50% - 20px);
        min-width: 250px;
        flex-grow: 1;
    }

    .sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1a1b26;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 0;
        transition: right 0.3s ease;
        margin: 0;
        z-index: 100;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .auth-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        width: 100%;
    }

    .auth-buttons .btn {
        margin: 10px 0;
        width: 80%;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .code-editor {
        max-width: 100%;
    }

    .features, .team {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .feature-card, .agent-card {
        width: 100%;
    }

    .dashboard {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-container, .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Backdrop for mobile menu */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.backdrop.active {
    display: block;
    opacity: 1;
}

/* Stepper for multi-step forms */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #1a1b26;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #a1a1aa;
    position: relative;
    z-index: 1;
}

.step.active .step-icon {
    background-color: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

.step.completed .step-icon {
    background-color: #34d399;
    border-color: #34d399;
    color: white;
}

.step-label {
    font-size: 14px;
    color: #a1a1aa;
}

.step.active .step-label {
    color: white;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Form Elements */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.radio-group {
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option:hover {
    background-color: rgba(18, 19, 25, 0.5);
}

.radio-option.selected {
    border-color: #7c3aed;
    background-color: rgba(124, 58, 237, 0.1);
}

.radio-option input[type="radio"] {
    margin-right: 15px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}