body{
	background-color: rgb(34, 34, 34);
	color: #fff;
}





/* LIST GROUP STRIPED */
	ul.list-group.list-group-striped li:nth-of-type(odd){
	    background-color: #212529;
	}
	ul.list-group.list-group-striped li:nth-of-type(even){
	    background-color: #2c3034;
	}


/* FORMS */ 

	.form-group{
		padding: 20px;
		border-radius: 5px;
	}

	.form-group label{
		color: #fff;
		font-weight: bold;
	}

	.form-group input, .form-group select{
		margin-bottom: 20px;
	}

	select.form-control:disabled, input.form-control:disabled{
		background: #bbb;
		border: 1px solid #999;
	}

	.is-invalid{
		border-width: medium;
	}


/* MAILER TOGGLE */
	.mailer-toggle-card {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding: 14px 16px;
		border-radius: 8px;
		border: 1px solid rgba(255, 255, 255, 0.16);
		background: rgba(255, 255, 255, 0.04);
	}

	.mailer-toggle-label {
		color: #fff;
		margin: 0;
		line-height: 1.2;
		font-weight: 500;
	}

	.mailer-toggle-switch {
		position: relative;
		display: inline-block;
		width: 56px;
		height: 30px;
		flex-shrink: 0;
	}

	.mailer-toggle-switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}

	.mailer-toggle-slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #dc3545;
		border-radius: 34px;
		border: 1px solid rgba(255, 255, 255, 0.2);
		transition: 0.22s ease;
	}

	.mailer-toggle-slider:before {
		position: absolute;
		content: '';
		height: 24px;
		width: 24px;
		left: 3px;
		top: 3px;
		background-color: #fff;
		border-radius: 50%;
		transition: 0.22s ease;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
	}

	.mailer-toggle-switch input:checked + .mailer-toggle-slider {
		background-color: #34c759;
		border-color: #34c759;
		box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.2);
	}

	.mailer-toggle-switch input:checked + .mailer-toggle-slider:before {
		transform: translateX(26px);
	}

	.mailer-toggle-switch input:focus + .mailer-toggle-slider {
		box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
	}

	.mailer-toggle-switch input:disabled + .mailer-toggle-slider {
		cursor: not-allowed;
		opacity: 0.5;
	}


/* IMAGE UPLOAD GRID */
	.image-upload-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
	}

	.image-upload {
		width: 120px;
		height: 120px;
		border: 2px dashed #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		position: relative;
		overflow: hidden;
	}

	.image-upload.is-invalid {
		border-color: red;
		color: red;
	}

	.image-upload input[type='file'] {
		display: none;
	}

	.image-upload .add {
		font-weight: bolder;
		font-size: 2em;
		color: #fff;
	}

	.image-upload.is-invalid .add {
		color: red;
	}

	.image-upload img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		object-fit: cover;
		display: none;
	}