.admin-dashboard {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.project-form {
    margin-top: 2rem;
}

.project-form input,
.project-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Fira Code', monospace;
}

.project-form button {
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.project-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.projects-list {
    margin-top: 3rem;
}

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

.admin-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.admin-btn.edit,
.admin-btn.delete {
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-btn.edit:hover {
    background: rgba(0, 255, 157, 0.2);
}

.admin-btn.delete:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
}

.admin-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 