.url-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.url {
    font-family: monospace;
    font-weight: bold;
    font-size: large;
    text-align: center;
    background: var(--green);
    color: var(--text-dark);
    padding: 1rem 3rem;
    border-top: 1px solid var(--highlight-1);
    border-left: 1px solid var(--highlight-1);
    box-shadow: 6px 6px var(--shadow);
    flex-grow: 0;
    transition: 0.2s;
}

.url:hover {
    cursor: pointer;
    border-top: 1px solid var(--highlight-3);
    border-left: 1px solid var(--highlight-3);
    box-shadow: 8px 8px var(--shadow);
}

form button {
    margin: 0;
    height: 100%;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: right;
}

.clear-button {
    text-align: center;
    text-decoration: none;
    background: var(--red);
    color: var(--text);
    padding: 1rem;
    border: 1px solid var(--red);
    box-shadow: 6px 6px var(--shadow);
    transition: 0.2s;
}

.clear-button:hover {
    text-decoration: underline;
    cursor: pointer;
    background: var(--bg-input-light);
    color: var(--text-dark);
    box-shadow: 8px 8px var(--shadow);
    border-top: 1px solid var(--highlight-3);
    border-left: 1px solid var(--highlight-3);
}

.detail-explanation {
    color: var(--text-muted);
    font-size: smaller;
}

.select2-container {
    height: 100%;
}