.cobalt-downloader-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.cobalt-form .form-group {
    margin-bottom: 15px;
}

.cobalt-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.cobalt-input, .cobalt-select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.cobalt-button {
    background: #0073aa;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.cobalt-button:hover {
    background: #005a87;
}

.cobalt-loading {
    text-align: center;
    padding: 20px;
}

.cobalt-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cobalt-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.cobalt-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.cobalt-download-link {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.cobalt-download-link:hover {
    background: #218838;
    color: white;
}

.cobalt-picker {
    background: #e2e3e5;
    border: 1px solid #d3d4d5;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.picker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.picker-item:last-child {
    border-bottom: none;
}

.picker-item a {
    background: #007cba;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.picker-item a:hover {
    background: #005a87;
}