body {
    margin: 0;
    overflow: hidden;
    background: #f0f0f0;
}

#container {
    width: 100%;
    height: 100vh;
}

#input-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
}

#repo-url {
    padding: 5px;
    width: 300px;
}

button {
    padding: 5px 10px;
    background: #228B22;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background: #1a6b1a;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hidden {
    display: none;
}