/**********/
/* GLOBAL */
/**********/

hr {margin:20px 0 !important;}
ul {list-style-type: none;}

textarea {
	width: 100%;
	min-height: 100px;
}

a.green_link {
	background: #008000;
	color: #fff;
	padding: 3px 5px;
	border-radius: 5px;
	text-decoration: none;
}
a.green_link:hover {
	background: #02c722;
}

tr.clickable-row:hover {
    background-color: #e1fbe6;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.checkbox-group {
	margin-bottom: 0.4em;
	display: flex !important;
	flex-direction: column !important;
	gap: 4px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	width: 100% !important;
}

.checkbox-item label {
	cursor: pointer;
}

select {
	background: #fff;
}

/********************/
/* APPLICATION PAGE */
/********************/

.application-form {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.application-form .form-container {
    max-width: 800px;
}



/**********************/
/* MODEL PROFILE PAGE */
/**********************/

.model-title-area {
    display: flex;
    justify-content: space-between; /* pushes title left and buttons right */
    align-items: center; /* vertically centers them */
    gap: 1rem; /* optional spacing */
	width: 100%;
	border-bottom: 2px solid #666;
	margin-bottom: 10px;
}

.model-title-area h1 {
    margin: 0; /* prevent extra gap */
}

.model-action-buttons {
    display: flex;
    gap: 0.5rem; /* space between buttons */
}

.completed_shoots ul {list-style-type: none;}

.completed_shoots li {
	padding: 5px 10px;
	background: #eee;
	border: 1px solid #666;
	border-radius: 6px;
	margin: 10px 0;
	width: auto;
	display: inline-block;
}

.completed_shoots a li {
	color: #000;
}

.completed_shoots a li:hover {
	background: #ddd;
	color: #b33716;
}

.model_actions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}


/*********************/
/* USER PROFILE PAGE */
/*********************/

.user-profile-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.stats-container {
	display: inline-block;
	width: auto;
	background: #eee;
	border: 1px solid #666;
	border-radius: 6px;
	text-align: right;
	padding: 5px 10px;
}

/**********************/
/* SHOOT DETAILS PAGE */
/**********************/

.shoot_details_documentation_area {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.doc_item {
  width: auto;
}

.shoot_details_webmasters {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}