
        /* SEED Popup Overlay */
        .seed-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .seed-popup-overlay.active {
            display: flex;
        }

        .seed-popup {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #999999;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: #f5f5f5;
            color: #333333;
        }

        .popup-close:focus {
        }

        .popup-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 1.5rem;
        }



.seed-create-btn {
    background-color: #166a6a;
    color: white;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seed-create-btn:hover {
    background-color: #033A50;
}

.seed-create-btn:focus {
    outline-offset: 2px;
}



.seed-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seed-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #166a6a;
    border-radius: 10px;
    background: #f9fafa;
}

