* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background-color: #191820;
	color: white;
	min-height: 100vh;
}

.main-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.content_wrap {
	width: 100%;
	padding: 2rem;
	min-height: 400px;
	flex-direction: column;
}

.content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.content-header h1 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.button {
	background-color: #5e37e9;
	color: white;
	border: none;
	border-radius: 0.375rem;
	padding: 0.75rem;
	font-size: 0.875rem;
	cursor: pointer;
	margin-left: 0.5rem;
}

.button:hover {
	background-color: #8137e9;
}

.filter-buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
	gap: 8.5px;
}

.filter-dropdown {
	padding: 8px 16px;
	background-color: #33333e;
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 16px;
	padding-right: 30px;
	padding-left: 5px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.filter-dropdown:hover {
	box-shadow: 0 0 0 0.5px #ffffff;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	width: 100%;
	height: auto !important;
	min-height: 200px;
}

.grid-item {
	aspect-ratio: 1.2/1;
	background-color: #33333e;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	min-height: 150px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
	border-color: #5e37e9;
	box-shadow: 0 0 10px rgba(94, 55, 233, 0.5);
}

.item-thumbnail{
	width: 100%;
	height: 100%;
}

.item-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.item-title {
	font-size: 14px;
	color: white;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: 160px;
}

.item-thumbnail video{
	max-width: none !important;
	height :100%;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.item-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* 가로 세로 꽉 채우기. 비율 무시! */
}

.item-actions {
	display: flex;
	gap: 12px;
	color: #fff;
	font-size: 12px;
}

.menu-dots {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex_custom_wrap {
	flex-direction: column;
}

@media ( max-width : 1024px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media ( max-width : 768px) {
	.grid {
		grid-template-columns: 1fr;
	}
}

.dropdown {
	position: absolute;
	top: 80%;
	right: 5px;
	background-color: #252535;
	border-radius: 0.5rem;
	padding: 0.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	display: none;
	z-index: 100;
}

.dropdown:hover {
	background-color: #2a2a3a;
}

.dropdown.show {
	display: block;
}

.dropdown-item {
	display: flex;
	align-items: center;
	padding: 3px;
	gap: 0.5rem;
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
	border-radius: 0.25rem;
	cursor: pointer;
}

.dropdown-item i {
	font-size: 1rem;
	color: #6f757d;
}

.list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.item {
	background-color: #252535;
	border-radius: 0.5rem;
	padding: 1.5rem;
	position: relative;
	transition: background-color 0.2s;
	cursor: pointer;
	margin-bottom: 20px;
}

.item:hover {
	background-color: #2a2a3a;
}

.date {
	font-size: 0.875rem;
	color: #6f757d;
	margin-bottom: 0.5rem;
}

.title {
	font-size: 1rem;
	color: #fff;
}

.actions {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.status-badge {
	background-color: rgba(129, 55, 233, 0.1);
	color: #A57AEF;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
}

.status-badge.completed {
	background-color: rgba(76, 175, 80, 0.1);
	color: #4CAF50;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.75rem;
}

.options-btn {
	background: none;
	border: none;
	color: #6f757d;
	cursor: pointer;
	padding: 1rem;
	font-size: 1.25rem;
	position: relative;
}

.options-btn:hover {
	color: #fff;
}

/* account */
.section {
	width: 100%;
	margin-bottom: 3rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-label {
	display: block;
	color: #6f757d;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.form-control {
	width: 100%;
	padding: 0.75rem;
	background-color: #252535;
	border: none;
	border-radius: 0.375rem;
	color: white;
	font-size: 0.875rem;
	font-family: sans-serif;
}

.form-control:focus {
	outline: none;
	box-shadow: 0 0 0 2px #5e37e9;
}

textarea.form-control {
	min-height: 100px;
	resize: none;
}

.radio-group {
	display: flex;
	gap: 0.5rem;
}

.radio-group span {
	font-size: 0.9rem;
}

.radio-input {
	accent-color: #5e37e9;
}

.btn {
	background-color: #5e37e9;
	color: white;
	border: none;
	border-radius: 0.375rem;
	padding: 0.75rem;
	font-size: 0.875rem;
	cursor: pointer;
	width: 100%;
	margin-top: 1.5rem;
	display: block;
}

.btn:hover {
	background-color: #8137e9;
}

.verify-button {
	width: 100px;
}

.verification-section {
	display: none;
}

.verification-section.active {
	display: block;
}

.email-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.email-container>input[type="email"] {
	width: calc(100% - 110px);
}

.verification-container {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.verification-container>input[type="text"] {
	width: calc(100% - 110px);
}

#confirmPwText {
	font-size: 13px;
}

#ChangeConfirmPwText {
	font-size: 13px;
	margin-bottom: 15px;
}

#ChangeConfirmPwTextCheck {
	font-size: 13px;
}



