#sources-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-m);
}

.source-item {
    padding: 12px;
    border: 2px solid var(--color-main);
    width: calc(100% / 3 - 20px * 2 / 3);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    background-color: white;
    transition: all 0.3s ease;
}

.source-item-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.button.delete-source-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    padding: 8px 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
    font-family: "Roboto Mono", monospace;
    letter-spacing: 0.3px;
}

.button.delete-source-button:hover {
    background-color: #ff5252;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.button.delete-source-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(255, 107, 107, 0.2);
}

.button.delete-source-button:disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
    transform: none;
}