#stock-image-downloader {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#stock-image-form {
    display: flex;
    gap: 10px;
}

#image-url {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#stock-image-form button {
    padding: 8px 16px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#stock-image-form button:hover {
    background-color: #005177;
}

#result {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.stock-image-single {
    display: flex;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    align-items: center;
}

.stock-image-container {
    flex: 0 0 auto;
    margin-right: 20px;
}

.stock-image-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.stock-image-content {
    flex: 1;
}

.stock-image-content h2 {
    margin-top: 0;
    font-size: 24px;
}

.stock-image-download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.stock-image-download-button:hover {
    background-color: #005177;
}

.stock-image-full {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.stock-image-full-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}