/**
* Core GWS Create Request Styles
*
* Styling for the GWS citizenlink work order submission form.
* Mirrors coreGwsRequestAccount.css layout conventions.
*
* @author PR
* @since 02/24/2026
* @package CITIZENLINK
* @subpackage GWS
*/

/* -------------------------------------------------------
   Intro info box (grey with green left border)
------------------------------------------------------- */
.adg-jqu-sectiontext.account-setup-information-1 {
	background: #f5f5f5 !important;
	border-left: 4px solid #5cb85c !important;
	padding: 10px 14px !important;
	margin: 0 0 16px 0 !important;
	border-radius: 0 !important;
	font-weight: normal !important;
	font-size: 13px !important;
	color: #333 !important;
}

/* -------------------------------------------------------
   Section header bars
------------------------------------------------------- */
.adg-jqu-sectiontext.gws-section-header {
	background-color: #e8e8e8 !important;
	color: #333 !important;
	font-size: 13px !important;
	font-weight: bold !important;
	padding: 6px 10px !important;
	margin: 0 !important;
	border-radius: 0 !important;
	display: block !important;
	box-sizing: border-box !important;
	border: none !important;
	border-bottom: 1px solid #ccc !important;
}

.text-and-button.gws-section-header-row {
	display: block !important;
	width: 100% !important;
	min-height: 0 !important;
	margin: 10px 0 0 0 !important;
	padding: 0 !important;
	clear: both;
	overflow: hidden;
}

.text-and-button.gws-section-header-row .text-and-button-text {
	float: none !important;
	width: 100% !important;
}

.text-and-button.gws-section-header-row .text-and-button-button {
	display: none !important;
}

/* -------------------------------------------------------
   Form field rows
------------------------------------------------------- */
#coreGwsCreateRequestForm .text-and-button {
	margin-bottom: 4px;
	overflow: hidden;
	clear: both;
}

#coreGwsCreateRequestForm .text-and-button-button {
	display: none !important;
}

#coreGwsCreateRequestForm .text-and-button-text {
	float: none !important;
	width: 100% !important;
	white-space: normal !important;
	min-height: 0 !important;
}

/* -------------------------------------------------------
   Two-column layout: label right-aligned on left,
   input on right
------------------------------------------------------- */
#coreGwsCreateRequestForm .gws-field-row {
	display: table;
	width: 100%;
	margin-bottom: 6px;
}

#coreGwsCreateRequestForm .gws-field-label {
	display: table-cell;
	width: 175px;
	text-align: right;
	padding: 5px 8px 5px 0;
	vertical-align: middle;
	font-size: 13px;
	color: #333;
	white-space: nowrap;
}

#coreGwsCreateRequestForm .gws-field-label.gws-field-label-top {
	vertical-align: top;
	padding-top: 7px;
}

#coreGwsCreateRequestForm .gws-field-input {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	padding: 2px 0;
}

/* -------------------------------------------------------
   Input, select, textarea sizing
------------------------------------------------------- */
#coreGwsCreateRequestForm input[type="text"],
#coreGwsCreateRequestForm select {
	width: 280px;
	padding: 3px 6px;
	border: 1px solid #aaa;
	border-radius: 2px;
	font-size: 13px;
	box-sizing: border-box;
	background: #fff;
}

#coreGwsCreateRequestForm textarea {
	width: 400px;
	height: 100px;
	padding: 4px 6px;
	border: 1px solid #aaa;
	border-radius: 2px;
	font-size: 13px;
	box-sizing: border-box;
	background: #fff;
	resize: vertical;
}

#coreGwsCreateRequestForm input[type="text"]:focus,
#coreGwsCreateRequestForm select:focus,
#coreGwsCreateRequestForm textarea:focus {
	outline: none;
	border-color: #66afe9;
	box-shadow: 0 0 4px rgba(102, 175, 233, 0.5);
}

/* -------------------------------------------------------
   Notification checkbox row
------------------------------------------------------- */
#coreGwsCreateRequestForm .gws-field-input.gws-checkbox-cell {
	vertical-align: middle;
	padding: 4px 0;
	font-size: 13px;
	color: #333;
}

#coreGwsCreateRequestForm .gws-notify-checkbox {
	margin-right: 6px;
	vertical-align: middle;
}

/* -------------------------------------------------------
   Error message
------------------------------------------------------- */
#gws-create-request-error {
	display: none;
	color: #a94442;
	background: #f2dede;
	border: 1px solid #ebccd1;
	padding: 8px 12px;
	margin: 0 0 10px 175px;
	border-radius: 3px;
	font-size: 13px;
}

/* -------------------------------------------------------
   Button row
------------------------------------------------------- */
#coreGwsCreateRequestForm .gws-button-row {
	margin-top: 12px;
	display: flex !important;
	align-items: center;
	gap: 8px;
	padding-left: 183px;
}

/* -------------------------------------------------------
   Submission confirmation
------------------------------------------------------- */
.gws-submission-confirmation {
	text-align: center;
	padding: 30px;
}

.gws-confirm-icon {
	color: #5cb85c;
	display: block;
	margin-bottom: 12px;
}
