#customSection {
    display: block;
    margin-top: 10px;
}
#tagContainer {
    /*border: 1px dashed #0486c9;*/
    padding: 5px 5px 10px 5px;
    /*width: 100%;*/
    text-align: center;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /*background-color: rgba(249, 249, 249, 0.8);*/
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    transition: box-shadow 0.3s ease-in-out;
}
/*#tagContainer:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}*/
.tag-cloud {
    display: inline-block;
    padding: 6px 8px;
    margin: 1px;
    border-radius: 10px;
    color: #fff;
    font-size: x-small;
    cursor: default;
    background-color: #007bff;
    /*box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.3);*/
    box-shadow: 2px 2px 9px 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.tag-cloud:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.3);
}

.modalws {
	display: none;
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(0, 0, 0, 0.6);*/ /* Background yang lebih gelap */
}
.modalws-content {
    /*background: linear-gradient(279deg, rgba(71, 133, 197, 0.8), rgba(0, 201, 255, 0.9));*/
	/*background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);*/
	background: linear-gradient(-45deg, rgba(238, 119, 82, 0.7), rgba(231, 60, 126, 0.7), rgba(35, 166, 213, 0.6), rgba(35, 213, 171, 0.6));
	/*animation: gradientAnimation 15s ease infinite;*/
	background-size: 400% 400%;
    margin: auto;
    padding: 20px;
    /*border: 2px solid #b3d4fc;*/
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* animation: fadeIn 0.5s ease-in-out, gradientAnimation 6s infinite alternate ease-in-out; */
	animation: fadeIn 0.3s ease-out, gradientAnimation 6s infinite alternate ease-in-out;
    position: relative;
    top: 200px; /* Offset dari atas */
}

@keyframes gradientAnimation {
    0% {
        /*background: linear-gradient(279deg, rgba(71, 133, 197, 0.8), rgba(0, 201, 255, 0.9));*/
		background-position: 0% 50%;
    }
    50% {
        /*background: linear-gradient(279deg, rgba(255, 94, 94, 0.8), rgba(255, 175, 75, 0.9));*/
		background-position: 100% 50%;
    }
    100% {
        /*background: linear-gradient(279deg, rgba(143, 68, 173, 0.8), rgba(75, 179, 255, 0.9));*/
		background-position: 0% 50%;
    }
}

.close-button {
	float: right;
	font-size: 22px;
	font-weight: bold;
	color: #555;
}
.close-button:hover {
	color: #e67e22;
	transform: scale(1.1);
	transition: color 0.2s, transform 0.2s;
}
@keyframes fadeIn {
	from { opacity: 0; transform: scale(0.9); }
	to { opacity: 1; transform: scale(1); }
}

#customTextarea {
    display: none;
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s;
}
#customTextarea:focus {
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.95);
}