* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.container {
    width: 500px;
    max-height: 700px;
    background-color: #C4C4C4;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.search-container {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
#search-input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #999;
    border-radius: 5px;
    outline: none;
}
#search-input:focus {
    border-color: #333;
}
#autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #999;
    border-top: none;
    border-radius: 0 0 5px 5px;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
}
.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.autocomplete-item:hover {
    background-color: #f5f5f5;
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.repo-list {
    width: 100%;
    flex-grow: 1;
    overflow: auto;
}
.repo-list::-webkit-scrollbar {
    display: none;
}
.repo-list h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
#repos-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.repo-item {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 2px solid #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.repo-info {
    flex-grow: 1;
}
.repo-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.repo-owner {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}
.repo-stars {
    color: #666;
    font-size: 14px;
}
.delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}
.delete-btn:hover {
    background: #cc0000;
}
.loader {
    text-align: center;
    padding: 10px;
    color: #666;
    display: none;
}
.error {
    color: #ff4444;
    margin-top: 10px;
    display: none;
}