* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 40px;
}

.app {
    max-width: 700px;
    margin: 0 auto;
    background: #2d2d2d;
    padding: 25px;
}

.search-wrapper {
    position: relative;
    margin-bottom: 25px;
}

#searchInput {
    width: 100%;
    padding: 12px;
    background: white;
    border: 2px solid #555;
    font-size: 14px;
}

#searchInput:focus {
    outline: none;
    border-color: #888;
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #555;
    border-top: none;
    display: none;
    z-index: 100;
}

#suggestions.show {
    display: block;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.suggestion:hover {
    background: #f0f0f0;
}

.suggestion-name {
    font-weight: bold;
    font-size: 14px;
}

.suggestion-owner {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.repo-card {
    background: #ffb6c1;
    border: 2px solid #ff69b4;
    padding: 12px;
    margin-bottom: 10px;
    position: relative;
}

.repo-card div {
    margin-bottom: 5px;
    font-size: 14px;
}

.repo-card strong {
    font-weight: bold;
}

.delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: red;
    font-weight: bold;
}

.delete-btn:hover {
    transform: scale(1.1);
}

.empty {
    text-align: center;
    padding: 40px;
    background: #ffb6c1;
    border: 2px solid #ff69b4;
    color: #333;
    font-size: 14px;
}