:root {
    --solana-purple: #9945FF;
    --solana-purple-dark: #8134E0;
    --solana-green: #14F195;
    --solana-blue: #00C2FF;
    --solana-pink: #FF30A0;
    --background-color: #121212;
    --card-background: #1e1e1ea3;
    --card-background-opaque: #1e1e1e;
    --text-color: #FFFFFF;
    --text-secondary: #AAAAAA;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(153, 69, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(20, 241, 149, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.05) 0%, transparent 30%);
    min-height: 100vh;
}


.container {
    background-color: #1e1e1ea3;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--solana-purple) 0%, var(--solana-green) 50%, var(--solana-blue) 100%);
}

h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

/* Add placeholder styling */
::placeholder {
    color: rgba(170, 170, 170, 0.7);
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgba(170, 170, 170, 0.7);
}

::-ms-input-placeholder {
    color: rgba(170, 170, 170, 0.7);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--solana-purple);
    box-shadow: 0 0 0 2px rgba(153, 69, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.button {
    background: linear-gradient(90deg, var(--solana-purple) 0%, var(--solana-purple-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    margin: 2rem 0 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(153, 69, 255, 0.4);
}

.button:active {
    transform: translateY(0);
}

.button:disabled {
    background: #333333;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.status {
    font-weight: 500;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    display: none;
}

.status.success {
    color: var(--solana-green);
    background-color: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.2);
}

.status.error {
    color: var(--solana-pink);
    background-color: rgba(255, 48, 160, 0.1);
    border: 1px solid rgba(255, 48, 160, 0.2);
}

.status.warning {
    color: #FFB800;
    background-color: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--solana-purple) 0%, var(--solana-green) 50%, var(--solana-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    display: inline;
}

.link {
    color: var(--solana-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.link:hover {
    color: var(--solana-blue);
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.badge.purple {
    background-color: rgba(153, 69, 255, 0.2);
    color: var(--solana-purple);
}

.badge.green {
    background-color: rgba(20, 241, 149, 0.2);
    color: var(--solana-green);
}

.badge.blue {
    background-color: rgba(0, 194, 255, 0.2);
    color: var(--solana-blue);
}

.badge.pink {
    background-color: rgba(255, 48, 160, 0.2);
    color: var(--solana-pink);
}

/* Dashboard specific styles */
.dashboard-container {
    max-width: 1200px;
    width: 90%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 1rem;
    margin-top: 5rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dashboard-content {
    flex: 1;
}

.folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.folder-card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.folder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.folder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.folder-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.folder-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.folder-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.verification-list {
    margin-top: 2rem;
}

.verification-item {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verification-details {
    flex: 1;
}

.verification-wallet {
    font-family: 'Roboto Mono', monospace;
    color: var(--solana-blue);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    word-break: break-all;
}

.verification-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.custom-fields-container {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.custom-field-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.field-type {
    width: 30%;
}

.field-name {
    width: 40%;
    margin: 0 1rem;
}

.field-required {
    width: 20%;
}

.field-actions {
    width: 10%;
    text-align: right;
}

.add-field-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.add-field-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive styles */
@media (max-width: 768px) {
    .folder-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-nav {
        width: 100%;
        justify-content: space-between;
    }
    
    .verification-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .verification-actions {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    
    .custom-field-item {
        flex-wrap: wrap;
    }
    
    .field-type, .field-name, .field-required, .field-actions {
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

/* Dashboard Layout */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 5rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dashboard-content {
    background-color: var(--card-background);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

/* Folder Grid */
.folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.folder-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.folder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.folder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--solana-purple) 0%, var(--solana-green) 100%);
}

.folder-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.folder-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.folder-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.folder-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Verification List */
.verification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verification-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.verification-details {
    flex: 1;
}

.verification-wallet {
    font-family: 'Roboto Mono', monospace;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    word-break: break-all;
}

.verification-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Buttons and UI Elements */
.button {
    background: linear-gradient(90deg, var(--solana-purple) 0%, var(--solana-purple-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3);
}

.button.secondary {
    background: transparent;
    border: 1px solid var(--solana-purple);
    color: var(--solana-purple);
}

.button.secondary:hover {
    background-color: rgba(153, 69, 255, 0.1);
}

.link {
    color: var(--solana-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.link:hover {
    color: var(--solana-green);
    text-decoration: underline;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge.purple {
    background-color: rgba(153, 69, 255, 0.2);
    color: var(--solana-purple);
}

.badge.green {
    background-color: rgba(20, 241, 149, 0.2);
    color: var(--solana-green);
}

.badge.blue {
    background-color: rgba(0, 194, 255, 0.2);
    color: var(--solana-blue);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal {
    background-color: var(--card-background-opaque);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--solana-purple);
    box-shadow: 0 0 0 2px rgba(153, 69, 255, 0.2);
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Status Messages */
.status {
    font-weight: 500;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
}

.status.success {
    color: var(--solana-green);
    background-color: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.2);
}

.status.error {
    color: var(--solana-pink);
    background-color: rgba(255, 48, 160, 0.1);
    border: 1px solid rgba(255, 48, 160, 0.2);
}

.status.warning {
    color: #FFB800;
    background-color: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.empty-state-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-nav {
        width: 100%;
        margin-top: 1rem;
    }
    
    .dashboard-content {
        padding: 1.5rem;
    }
    
    .folder-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-item {
        flex-direction: column;
    }
    
    .verification-actions {
        width: 100%;
        flex-direction: row;
        margin-top: 1rem;
    }
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-secondary { color: var(--text-secondary); }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 1rem; } 