/* zodiac-plugin.css */

/* Centering Remarks */
#zodiac-form label[for="remarks"] {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
    text-align: center; /* Center the label text */
}

/* Styling Remarks input */
#remarks {
    border-radius: 5px;
    border: 2px solid grey;
    width: 100%;
    padding: 8px;
    box-sizing: border-box; /* Ensure padding doesn't increase width */
    margin-bottom: 20px;
}

/* Centering Price label */
.zodiac-dropdowns label[for="price-dropdown"] {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: black;
    text-align: center; /* Center the label text */
}

/* Styling dropdowns */
.zodiac-select {
    border-radius: 5px;
    border: 2px solid grey;
    width: calc(100% - 4px); /* Adjust for border width */
    padding: 8px;
    box-sizing: border-box; /* Ensure padding doesn't increase width */
    margin-bottom: 20px;
}

/* Centering buttons */
#add-more  {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: black;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%; /* Make buttons 100% width */
    box-sizing: border-box; /* Ensure padding doesn't increase width */
}

#generate {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: green;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%; /* Make buttons 100% width */
    box-sizing: border-box; /* Ensure padding doesn't increase width */
}

#copy {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: Red;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%; /* Make buttons 100% width */
    box-sizing: border-box; /* Ensure padding doesn't increase width */
}

#save {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: yellow;
    border: none;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%; /* Make buttons 100% width */
    box-sizing: border-box; /* Ensure padding doesn't increase width */
}

/* Styling merchant dropdown and select price dropdown */
#merchant-dropdown, #price-dropdown {
    border-radius: 5px;
    border: 2px solid grey;
    width: 100%;
    padding: 8px;
    box-sizing: border-box; /* Ensure padding doesn't increase width */
    margin-bottom: 20px;
}

/* Centering output container */
#output-container {
    margin-top: 20px;
}

/* Styling zodiac select buttons */
.zodiac-select-panel {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensure buttons wrap to new line if space is not enough */
}

.zodiac-select-panel .zodiac-select {
    width: calc(33.33% - 6px); /* Adjust for border width */
    padding: 8px;
    box-sizing: border-box; /* Ensure padding doesn't increase width */
    margin-bottom: 20px;
}

/* History CSS Below */

form{
	margin-bottom: 20px;
}

label{
	display: block;
	margin-bottom: 5px;
}

input[type="text"],input[type="date"]{
	width: 200px;
	padding: 5px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="submit"]{
	padding: 8px 15px;
	background-color: #007bff;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}

.filter-form{
	margin-bottom: 20px;
}

.filter-row{
	display: flex;
	flex-wrap: wrap;
}

.filter-item{
	margin-right: 10px;
	margin-bottom: 10px;
}

.filter-item label{
	display: block;
	margin-bottom: 5px;
}

.filter-item input[type="text"],.filter-item input[type="date"]{
	width: 200px;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

.zodiac-container{
	margin-bottom: 20px;
}

.checkbox-container{
	display: flex;
	flex-wrap: wrap;
}

.checkbox-container label{
	flex: 0 0 auto;
	margin-right: 20px;
	white-space: nowrap;
}

table{
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	overflow-x: auto;
}

th, td{
	padding: 10px;
	border: 1px solid #ddd;
	text-align: left;
	white-space: nowrap;
}

th{
	background-color: #007bff;
	color: #fff;
}

.wp-block-group .filter-form input:nth-child(3){
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}

.wp-block-group form input[type=date]{
	padding: 15px !important;
}

.wp-block-group form input{
	padding: 17px !important;
}

/* Site blocks */
.wp-site-blocks{
	margin-bottom: 150px;
}



