/*!Animate.css - http://daneden.me/animate*/.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

@-webkit-keyframes shake {
	0%,100% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px)
	}

	20%,40%,60%,80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px)
	}
}

@keyframes shake {
	0%,100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px)
	}

	20%,40%,60%,80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

/* 编辑模式轻微抖动动画 - 覆盖原有的shake动画 */
@keyframes editShake {
	0%, 100% { transform: translateX(0) rotate(0deg); }
	25%, 75% { transform: translateX(-1.5px) rotate(-1.5deg); }
	50% { transform: translateX(1.5px) rotate(1.5deg); }
}

@keyframes editShakeRight {
	0%, 100% { transform: translateX(0) rotate(0deg); }
	25%, 75% { transform: translateX(1.5px) rotate(1.5deg); }
	50% { transform: translateX(-1.5px) rotate(-1.5deg); }
}

.edit-shake {
	animation: editShake 0.6s ease-in-out infinite !important;
}

.edit-shake-right {
	animation: editShakeRight 0.2s ease-in-out infinite !important;
}

/* 编辑和删除按钮样式 */
.icon-btn {
  position: absolute;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}

.icon-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.edit-btn {
  font-size: 36px;
  background: none !important;
  color: #4A90E2 !important; /* 蓝色单色 */
  background-color: rgba(255, 255, 255, 0.9) !important; /* 半透明白色背景 */
  cursor: pointer;
  z-index: 10;
  border: none !important;
  outline: none !important;
  padding: 12px !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  display: none !important;
  border-radius: 50% !important;
  box-sizing: content-box !important;
  font-family: inherit !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* 确保应用项目相对定位 */
.app-item {
  position: relative !important;
  display: inline-block !important;
  width: 128px !important;
  height: 128px !important;
}

/* 编辑按钮相对于应用项目居中 */
.app-item .edit-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* 编辑模式下显示编辑按钮 */
body.edit-mode .edit-btn {
  display: inline-block !important;
}

.edit-btn:hover {
  background-color: rgba(255, 255, 255, 1) !important; /* 悬浮时完全不透明 */
}

.edit-btn:hover:not(.edit-shake) {
  transform: translate(-50%, -50%) scale(1.1);
}

.edit-shake:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.delete-btn {
  width: 21px;
  height: 21px;
  font-size: 12px;
  top: 5px;
  right: 5px;
  background-color: rgba(220, 53, 69, 0.5);
}

.delete-btn:hover {
  background-color: rgba(220, 53, 69, 0.5);
}



/* 编辑模态框样式 */
.edit-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.edit-modal-content {
  background: #2b2b2b;
  margin: auto;
  padding: 26px 28px 24px;
  border: 1px solid #444444;
  border-radius: 18px;
  width: 90%;
  max-width: 420px;
  color: #e4e4e4;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.edit-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
}

.edit-modal-close:hover,
.edit-modal-close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.edit-modal h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #f0f0f0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #cfcfcf;
  font-weight: 400;
  font-size: 13px;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #555555;
  border-radius: 8px;
  background-color: #1f1f1f;
  color: #f0f0f0;
  font-size: 13px;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #00c4ff;
  box-shadow: 0 0 0 1px rgba(0, 196, 255, 0.6);
}

.form-actions {
  text-align: center;
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-save, .btn-cancel {
  padding: 9px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.btn-save {
  background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #f5f5f5;
}

.btn-save:hover {
  background-image: linear-gradient(135deg, #3b96f0 0%, #03d9e5 100%);
}

.btn-cancel {
  background-color: transparent;
  color: #dddddd;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

body,dd,dl,fieldset,form,h1,h2,h3,h4,h5,h6,input,legend,ol,p,select,td,textarea,th,ul {
	margin: 0;
	padding: 0
}

img {
	border: 0;
	vertical-align: middle
}

ul {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	font-size: 12px
}

a {
	color: #fff;
	text-decoration: none
}

@font-face {
	font-family:MyriadSetPro-Thin;src:url(./font/MyriadSetPro-Thin.ttf)
}

body {
	height: 100%;
	font-size: 100%;
	/*background-size:cover;
	background: url(../img/background.jpg) no-repeat;
	background-attachment: fixed;*/
	background: -webkit-linear-gradient(315deg, #00C4FF, #9D1BB2) no-repeat fixed;
    background: linear-gradient(135deg, #00C4FF, #9D1BB2) no-repeat fixed;
	overflow-x: hidden;
	overflow-y: auto;
	font-family: 'Helvetica Neue','Microsoft Yahei',SimHei,sans-serif;
	position: relative;
}

/* 背景模糊蒙层 */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: inherit;
	filter: blur(4px);
	z-index: -1;
	transition: filter 0.3s ease;
}

/* 不同模糊级别 */
body.bg-blur-none::before {
	filter: blur(0px);
}

body.bg-blur-light::before {
	filter: blur(4px);
}

body.bg-blur-medium::before {
	filter: blur(12px);
}

body.bg-blur-heavy::before {
	filter: blur(30px);
}

/* 背景暗化蒙层 */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.15);
	z-index: -1;
}

#wrap {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: visible;
	position: relative;
	z-index: 1;
}

#top {
	margin-top: 15%;
	width: 100%;
	height: 162px
}

#main {
	margin-top: 6%
}

#logo {
	width: 260px;
	margin: 0 auto;
	text-align: center;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
	transition: transform 0.2s ease, filter 0.2s ease;
}

#logo:hover {
	transform: translateY(-2px);
	filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}

#logo-display {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

#search-engine-logo {
	height: 64px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
	transition: all 0.3s ease;
}

#logo img:not(#current-engine-icon) {
	width: 141px
}

/* 搜索引擎图标样式 */
#current-engine-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

#current-engine-icon {
  height: 78px;
  width: auto;
  object-fit: contain;
  filter: none;
}

#current-engine-label {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  line-height: 1;
  transform: translate(14px, 6px);
}

#current-engine-label:empty {
  display: none;
}

#logo h1 {
	color: #fff;
	text-align: center;
	text-shadow: 0 0 10px #111;
	font-weight: 200;
	font-size: 36px;
	font-family: MyriadSetPro-Thin;
	margin-top: 15px
}

ul li {
	list-style-type: none;
	float: left;
	margin: 10px 10px 15px 25px
}


.app {
	position: relative;
}

div ul li a,div ul li a strong,ul li {
	display: block;
	width: 128px
}

/* 统一图标尺寸 */
div ul li a img {
	width: 128px !important;
	height: 128px !important;
	object-fit: contain;
	margin: 0 auto;
	display: block;
	border-radius: 0;
	transition: all 0.3s ease;
}

div ul li a:hover img {
	transform: translateY(-6px) scale(1.05);
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45));
}

/* 编辑模式下禁用应用图标悬浮效果 */
body.edit-mode div ul li a:hover img {
	transform: none;
	filter: none;
}

div ul li a:visited,ul li a:active,ul li a:link {
	text-decoration: none;
	text-align:center;
}

ul li a strong {
	margin-top: 5%;
	height: 32px;
	color: #FFF;
	text-align: center;
	text-shadow: 0 0 10px #111;
	font-weight: 400;
	font-size: 16px;
	font-family: MyriadSetPro-Thin;
	line-height: 32px
}

#footer {
	width: 100%;
	height: 50px;
	position: fixed;
	bottom: 0;
	-webkit-font-smoothing: antialiased;
	text-align: right;
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	color: rgba(255,255,255,.8);
	overflow: visible!important;
	z-index: 100;
}

.footer-contents {
	position: absolute;
	bottom: 14px;
	right: 10px;
	left: 10px;
	height: auto;
	outline: 0
}

.footer-contents .footer-link-separator {
	background-color: #e6eaed;
	background-color: rgba(230,234,237,.2);
	display: inline-block;
	width: 1px;
	height: 10px;
	vertical-align: baseline
}

.footer-contents a,.footer-contents a:active,.footer-contents a:focus {
	text-decoration: none;
	color: #fff;
	color: rgba(255,255,255,.8)
}

.footer-contents a:hover {
	color: #fff
}

#admin-link {
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.4);
	background: rgba(0,0,0,0.25);
	backdrop-filter: blur(6px);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

#admin-link:hover {
	background: rgba(0,0,0,0.4);
	border-color: rgba(255,255,255,0.8);
	box-shadow: 0 0 10px rgba(0,0,0,0.7), 0 0 14px rgba(0,0,0,0.9);
	transform: translateY(-1px);
}

/* 悬浮光晕效果 */
.shake:hover {
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
	transform: none;
}

/* 编辑模式下保留图标阴影，但不额外移动容器 */
body.edit-mode .shake:hover {
	transform: none;
}

.add-app-item {
	display: none;
}

.edit-mode .add-app-item {
	display: block;
}

.add-app-item-inner {
	border: 2px dashed rgba(255, 255, 255, 0.5);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 128px;
	padding: 0;
	cursor: pointer;
}

.add-app-item-inner strong {
	margin: 0;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1.2;
	text-align: center;
	color: #ffffff;
	font-weight: 500;
}

.app-page-item {
	opacity: 0;
	transform: translateY(12px);
	animation: appPageEnter 0.35s ease-out forwards;
}

.page-arrow {
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(120px);
	border: none;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	padding: 0;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.8), 0 0 14px rgba(0, 0, 0, 0.9);
	transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.page-arrow:hover {
	color: #ffffff;
	transform: translateY(120px) translateX(4px);
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 18px rgba(0, 0, 0, 0.95);
}

.page-arrow.page-arrow-hidden {
	display: none;
}

@keyframes appPageEnter {
	0% {
		opacity: 0;
		transform: translateY(12px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

body.edit-mode .app-item:not(.add-app-item-inner),
body.edit-mode .app-item:not(.add-app-item-inner):hover {
	background: transparent !important;
	backdrop-filter: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	border: none !important;
}

.icon-picker-toggle {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 6px 12px;
  background: transparent;
  color: #dddddd;
  font-size: 12px;
  cursor: pointer;
  margin-top: 8px;
}

.icon-picker-toggle:hover {
  background: rgba(255,255,255,0.06);
}

.icon-picker {
  margin-top: 10px;
  max-height: 220px;
  overflow-y: auto;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  padding: 10px;
  background: #222222;
  display: none;
}

.icon-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
}

.icon-picker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-picker-item img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.icon-picker-item span {
  font-size: 11px;
  color: #d0d0d0;
  text-align: center;
}

.icon-picker-item:hover {
  background: #303030;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* 控制面板样式 */
.control-panel {
  position: fixed;
  top: 50px;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

/* 模式切换器样式 */
.mode-switcher {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 4px;
  position: relative;
}

.switch-btn {
  position: relative;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 2;
}

.switch-btn.active {
  color: #333;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 现代化编辑按钮样式 */
.edit-btn-new {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.edit-btn-new:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.edit-btn-new.editing {
  background: rgba(76, 175, 80, 0.3);
  color: rgba(255, 255, 255, 1);
}

.edit-icon {
  font-size: 14px;
  transition: all 0.3s ease;
}

.edit-text {
  transition: all 0.3s ease;
}


.from-below,.from-below-to-below .effeckt-modal {
	opacity: 0;
	-webkit-transition: all .5s;
	-o-transition: .5s;
	transition: .5s;
	-webkit-transform: translateX(100%);
	-o-transform: scale(.5);
	transform: scale(.5);
	-ms-transform: scale(.5)
}

.effeckt-show,.effeckt-show.from-below-to-below .effeckt-modal {
	opacity: 1;
	-webkit-transform: translateX(0);
	-o-transform: scale(1);
	transform: scale(1);
	-ms-transform: scale(1)
}

.effeckt-show .effeckt-modal {
	visibility: visible
}

@media screen and (min-width:1200px) {
	#wrap {
		width: 1024px;
		height: 900px
	}
}

@media screen and (min-width:960px) and (max-width:1199px) {
	#wrap {
		width: 1024px
	}
}

@media screen and (min-width:768px) and (max-width:959px) {
	#wrap {
		width: 750px
	}
}

@media only screen and (min-width:480px) and (max-width:767px) {
	/* 平板设备下的图标统一尺寸 */
	div ul li a img, .app ul li a img {
		width: 160px !important;
		height: 160px !important;
		border-radius: 0;
	}

	div ul li a,div ul li a strong,ul li {
		display: block;
		width: 180px
	}
}

@media only screen and (max-width:479px) {
	.t op {
		position: relative;
		top: 50px;
		left: 0;
		text-align: center
	}

	/* 手机设备下的图标统一尺寸 */
	div ul li a img, .app ul li a img {
		width: 112px !important;
		height: 112px !important;
		border-radius: 0;
	}

	div ul li a,ul li {
		display: block;
		width: 140px
	}

	div ul li a strong {
		width: 140px
	}

	ul li {
		list-style-type: none;
		float: left;
		margin: 0 0 15px 25px
	}
}


.text-js {
  opacity: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* 搜索框样式 */
#search-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative; /* 为下拉菜单提供定位基准 */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  height: 64px;
  z-index: 10;
}





.current-engine-icon {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

#search-engine {
  display: none;
}


/* 搜索引擎选择器 */
.search-engine-selector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  min-width: 100px;
  background: transparent;
}

.search-engine-selector:hover {
  background: transparent;
  border-radius: 4px 0 0 4px;
}

#current-engine-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

#current-engine-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #666;
  font-weight: normal;
  background: none;
  text-shadow: none;
  box-shadow: none;
}

.dropdown-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  transition: transform 0.2s ease;
  width: 12px;
  height: 12px;
}

.search-engine-selector.open .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

#search-input-wrapper {
  flex: 1;
}

/* 搜索引擎下拉菜单 */
.search-engine-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  min-width: 180px;
}

.search-engine-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dropdown-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.dropdown-item span {
  font-size: 14px;
  color: #333;
}

#search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #333;
  width: 380px;
  margin-right: 8px;
}

#search-input::placeholder {
  color: #999;
}

#change-wallpaper-btn {
  margin-left: 8px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.98);
  color: #666;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

#change-wallpaper-btn:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

#change-wallpaper-btn:active {
  transform: translateY(0);
}

#search-btn {
  background: linear-gradient(45deg, #4A90E2, #357ABD);
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#search-btn:hover {
  background: linear-gradient(45deg, #357ABD, #2E6B99);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#search-btn:active {
  transform: translateY(0);
}
