/* styles.css */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f8f7;
    color: #333;
}

.header {
    display: flex;
    justify-content:space-between;
    align-items: center;

    /* max-width: 1200px; */
    padding: 1rem 2rem;
    background-color: #fdfeff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: grey;
    /* background-color: pink; */
    gap: 0.3rem;
}
.logo img{
    width: 50px;
    height: auto;
    /* background-color: black; */
    border-radius: 50%;
}

.credits {
    display: flex;
    align-items: center;
    gap: 15px;
}

.credits span {
    font-size: 16px;
    color: #555;
}

.user {
    font-size: 16px;
    color: #3a82f7;
    font-weight: 600;
}

.main-content {
    padding-bottom: 50px;
    text-align: center;
    background-color: #ebf9ff;
    height: 100%;
}

.image-preview {
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background-color: #fdfeff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.image-preview img {
    max-width: 400px;
    height: auto;
    border-radius: 2px;
}

.loading-text {
    margin-top: 10px;
    font-size: 18px;
    color: #999;
}

.input-section {
    margin-top: 20px;
    /* margin-bottom: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: pink; */
    /* gap: 10px; */
}

.input-section input {
    width: 300px;
    padding: 10px;
    font-size: 17px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.generate-btn {
    padding: 7px;
    font-size: 20px;
    background-color: #3a82f7;
    color: white;
    border: 2px solid #3a82f7;
    border-radius: 5px;
    cursor: pointer;
}

.generate-btn:hover {
    background-color: #f4f9fb;
    color: #3a82f7;
}