/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/*shortcode css*/

.maikerai-tool {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    max-width: 600px; /* Adjust maximum width as needed */
    text-align: center; /* Center-align content */
}
.maikerai-tool h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.maikerai-tool .tool-description {
    color: #666;
    margin-bottom: 15px;
}
.maikerai-tool .form-group {
    margin-bottom: 15px; /* Adjust space between rows */
    text-align: left; /* Align form elements to the left */
}
.maikerai-tool label {
    flex: 1;
    margin-top: 5px;
    margin-right: 10px;
    margin-bottom: 5px;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 150px;
    font-weight: 500;
}
.maikerai-tool input[type="text"] {
    flex: 2;
    padding: 10px 5px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #cbcbcb;
    outline: none;
	margin: 0px 0px 0px !important;
}
.maikerai-tool select{
    flex: 2;
    padding: 10px 5px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #cbcbcb;
    outline: none;
    margin: 0px 0px 0px !important;
}
.maikerai-tool textarea {
    flex: 2;
    padding: 10px 5px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #cbcbcb;
    outline: none;
}
.maikerai-tool input[type="submit"] {
display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 18px;
    font-size: 18px;
    border-radius: 6px;
}
.maikerai-tool .form-group {
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.maikerai-tool input[type="submit"]:hover {
    background-color: #0056b3; /* Hover color */
}

.maikerai-tool footer p {
    text-align: right;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    position: relative;
    bottom: 10px;
    right: 10px;
}
.prompt_msg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 25px;
}
.show_msg {
    text-align: left;
    margin-left: 10px;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.maikerai-tool hr {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 1.825rem;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 1px;
}
