/* Hide the md container from basic.html */
.markdown-body {
    display: none;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    width: 150px;
    height: 40px;
}

.description {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    margin-left: 30px;
}

.env-buttons {
    margin-top: 5px;
    margin-bottom: 5px;
    gap: 5px;
}

.prod-button {
    color: blue; /* Text of button */
    width: 160px;
    text-align: center;
}

.dev-button {
    color: green;
    width: 80px;
}

.ssk-prod-button {
  color: purple;
  width: 160px;
  text-align: center;
  white-space: nowrap;
}

h2, p {
    margin-top: 5px;
    margin-left: 30px;
    margin-bottom: 5px;
}

/* Remove left margin for p tags inside description class */
.description p {
    margin-left: 0;
}

#create-object-name-input, #create-data-input, 
#update-object-name-input, #update-data-input, 
#delete-object-name-input, #list-bucket-name-input,
#download-object-name-input,
#update-bucket-name-input, #action-input,
#object-name-input, #data-input {
    width: 20%;
    font-size: 16px;
}

/* Place the field and button horizontally using flexbox */
.input-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
    margin-bottom: 20px;
}

/* Make the response box visible */
#response1, #response2 {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #333;
    width: 50%;
}
