@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;600;700&display=swap');

body {
    font-family: 'Inconsolata', monospace;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

#generator {
    max-width: 750px;
    background-color: #fff;
    padding: 20px;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    color: #333;
}

#header {
    font-weight: 600;
}

#influencerCampaignCheckbox{
    font-weight: 600;
}

input[type="text"] {
    width: 95%;
    padding: 10px 25px 10px 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* input:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed; 
} */


select, input[type="checkbox"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#headline {
    font-family: 'Inconsolata', monospace;
    font-size: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    text-align: center;
    padding: 0px 0px 0px 0px;
}

button {
    font-family: 'Inconsolata', monospace;
    display: inline-block;
    background-color: #000000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#downloadButton {
    background-color: #000000;  /* Default color */
    color: white;
    cursor: pointer;
    /* ... any other styles you have for the button ... */
}

#downloadButton:disabled {
    background-color: #cccccc;  /* Grayed out color */
    cursor: not-allowed;  /* Change the cursor to a "not allowed" icon */
}

#downloadButton:hover {
    background-color: #111111;
}

#copyButton {
    background-color: #000000;  /* Default color */
    color: white;
    cursor: pointer;
    /* ... any other styles you have for the button ... */
}

#copyButton:disabled {
    background-color: #cccccc;  /* Grayed out color */
    cursor: not-allowed;  /* Change the cursor to a "not allowed" icon */
}

#copyButton:hover {
    background-color: #111111;
}

button:hover {
    background-color: #111111;
}

p#output {
    background-color: #e9ecef;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
}

h4 {
    margin-top: 20px;
    color: #333;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group label {
    margin: 0;
    margin-right: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto; /* Reset the width for checkboxes */
    margin: 0;
    margin-right: 10px;
}

.checkbox-group-hidden {
    display: none;
    align-items: center;
    margin-bottom: 15px;
}

.hidden {
    display: none;
}

.checkbox-group-hidden label {
    margin: 0;
    margin-right: 10px;
}

.checkbox-group-hidden input[type="checkbox"] {
    width: auto; /* Reset the width for checkboxes */
    margin: 0;
    margin-right: 10px;
}