body {
	background-color: rgb(4, 32, 74);
}
.body-banned {
	background-color: rgb(53, 3, 3);
}
h1 {
	font-family: "Ramabhadra", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: rgb(255, 255, 255);
}
h2 {
	font-family: "Ramabhadra", sans-serif;
	font-weight: 100;
	font-style: normal;
	color: rgb(255, 255, 255);
}
h3 {
	font-family: "Ramabhadra", sans-serif;
	font-weight: 100;
	font-size: larger;
	font-style: normal;
	color: rgb(255, 255, 255);
}
p, span {
	font-family: "Heebo", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	color: rgb(255, 255, 255);
}
li{
	color: white;
	font-size: x-large;
}
input[type="text"],[type="password"] {
	background-color: rgb(38, 41, 46);
	color: rgb(220, 220, 220);
	border: 3px solid black;
	border-radius: 8px;
	padding: 4px;
}
input[type="password"]::-ms-reveal {
	display: none;
}
input[type="text"]:hover,[type="password"]:hover {
	background-color: rgb(52, 57, 64);
}
input[type="file"] {
	display: none;
}
input[type="submit"] {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: small;
}
textarea {
	resize: none;
	font-family: "Heebo", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	color: rgb(255, 255, 255);
	background-color: rgb(38, 41, 46);
}
button {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: small;
}
button[disabled] {
	opacity: 0.7;
}
button[disabled]:hover {
	cursor: not-allowed;
}
header {
	background-color: rgb(57, 56, 64);
	border-bottom: 5px solid black;
	margin-top: -10px;
	margin-left: -8px;
	margin-right: -8px;
	padding: 2vh 10vw;

	display: flex;
	align-items: center;
	position: relative;
}
.header-left {
	display: flex;
	align-items: center;
}
.header-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);

	display: flex;
	align-items: center;
	gap: 5vw;
}
.header-center > p {
	margin: 0;
}
.header-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 3vw;
}
.hidden {
	display: none;
}
.content {
	background-color: rgb(61, 121, 212);
	border: 5px solid black;
	border-radius: 25px;
	margin-top: 5vh;
	margin-bottom: 0vh;
	margin-left: 5vw;
	margin-right: 5vw;
	padding-top: 5vh;
	padding-bottom: 5vh;
	padding-left: 5vw;
	padding-right: 5vw;
}
.content-banned {
	background-color: rgb(20, 20, 20);
	border: 5px solid black;
	border-radius: 25px;
	margin-top: 5vh;
	margin-bottom: 0vh;
	margin-left: 5vw;
	margin-right: 5vw;
	padding-top: 5vh;
	padding-bottom: 5vh;
	padding-left: 5vw;
	padding-right: 5vw;
}
.center {
	text-align: center;
}
.requestbox {
	background-color: rgb(42, 70, 112);
	border: 5px solid black;
	border-radius: 10px;
	padding: 15px;
	margin-left: 20vw;
	margin-right: 20vw;
}
.bottom {
	align-self: flex-end;
}
.button-neutral {
	background-color: rgb(179, 179, 179);
	color: rgb(0, 0, 0);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
	border: 3px solid black;
	border-radius: 5px;
	transition-duration: 0.3s;
}
.button-neutral:hover {
	background-color: rgb(220, 220, 220);
	transform: scale(1.15);
	cursor: pointer;
}
.button-primary {
	background-color: rgb(144, 187, 245);
	color: rgb(0, 0, 0);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
	border: 3px solid black;
	border-radius: 5px;
	transition-duration: 0.3s;
}
.button-primary:hover {
	background-color: rgb(108, 148, 204);
	transform: scale(1.15);
	cursor: pointer;
}
.button-secondary {
	background-color: rgb(43, 43, 43);
	color: rgb(220, 220, 220);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
	border: 3px solid black;
	border-radius: 5px;
	transition-duration: 0.3s;
}
.button-secondary:hover {
	background-color: rgb(90, 90, 90);
	transform: scale(1.15);
	cursor: pointer;
}
.button-red {
	background-color: rgb(100, 0, 0);
	color: rgb(220, 220, 220);
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 4px;
	padding-bottom: 4px;
	border: 3px solid black;
	border-radius: 5px;
	transition-duration: 0.3s;
}
.button-red:hover {
	background-color: rgb(180, 0, 0);
	transform: scale(1.15);
	cursor: pointer;
}
.text-clickable {
	color: rgb(164, 231, 235);
	text-decoration: none;
}
.text-clickable > p {
	color: rgb(164, 231, 235);
}
.text-clickable:hover {
	text-decoration: underline;
	color: rgb(255, 255, 255);
}
.text-clickable:hover > p {
	color: rgb(255, 255, 255);
}
.img-clickable {
	opacity: 70%;
	transition-duration: 0.3s;
}
.img-clickable:hover {
	transform: scale(1.3);
	opacity: 100%;
}

.pfp-clickable {
	border-radius: 50%;
}

.pfp {
	border-radius: 50%;
	width: 200px;
	height: 200px;
}
.social-pfp {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	object-fit: cover;
}
.file-upload {
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: small;
}
#file-name {
	font-weight: bold;
	font-size: x-large;
  }
.social-container, .banned-social-container{
	display: flex;
	align-items: center;
	justify-content: space-between;

	background-color: white;
	border: 4px solid rgb(198, 200, 201);
	border-radius: 10px;

	padding: 10px 20px;
	width: 90%;
	max-width: 500px; /* 👈 keeps them from getting huge */
}
.banned-social-container {
	opacity: 50%;
}
#ban-message {
	white-space: pre-wrap;
}
/* LEFT SIDE (pfp + username) */
.social-left {
	display: flex;
	align-items: center;
	gap: 15px;
}
/* RIGHT SIDE (buttons later) */
.social-right {
	display: flex;
	align-items: center;
	gap: 10px;
}
/* Fix text */
.social-left > p {
	margin: 0;
	color: black;
}
.social-right > p {
	margin: 0;
	color: black;
}
#users-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	justify-items: center;
}
.column-container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 30px;

	flex-wrap: wrap; /* stacks on small screens */
}
.column {
	background-color: rgb(57, 56, 64);
	border: 4px solid black;
	border-radius: 15px;

	padding: 25px;

	width: 250px;
	min-height: 400px;

	box-sizing: border-box;

	transition-duration: 0.3s;

	display: flex;
	flex-direction: column;
	text-align: left;
}
.column:hover {
	transform: scale(1.03);
}
.column-top {
	flex: 0 0 auto;
	text-align: center;
}
.column-middle {
	flex: 0 0 auto;
}
.column-bottom {
	margin-top: auto;
	text-align: center;
	padding-top: 20px;
}
.column:hover {
	transform: scale(1.03);
}
.messages-layout {
	display: flex;
	gap: 20px;
	height: 50vh;
}
.conversations-sidebar {
	width: 300px;
	background-color: rgb(57, 56, 64);
	border: 4px solid black;
	border-radius: 15px;
	padding: 15px;
	overflow-y: auto;
}
.chat-area {
	flex: 1;
	background-color: rgb(57, 56, 64);
	border: 4px solid black;
	border-radius: 15px;
	padding: 15px;
	display: flex;
	flex-direction: column;
}
.conversation-card {
	background-color: rgb(80, 80, 90);
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	transition-duration: 0.2s;
}
.conversation-card:hover {
	transform: scale(1.02);
}
#messages {
	flex: 1;
	overflow-y: auto;
	margin-bottom: 15px;
}
.message {
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	max-width: 70%;
}
.message-self {
	background-color: rgb(61, 121, 212);
	margin-left: auto;
}
.message-other {
	background-color: rgb(90, 90, 90);
}
.message-form {
	display: flex;
	gap: 10px;
}
.message-form input {
	flex: 1;
}
@media (max-width: 800px) {
	.messages-layout {
		flex-direction: column;
	}
	.conversations-sidebar {
		width: auto;
	}
}
.popup-overlay {
	position: fixed;

	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background-color: rgba(0, 0, 0, 0.6);

	display: flex;

	justify-content: center;
	align-items: center;

	z-index: 9999;
}
.popup-overlay.hidden {
	display: none;
}
.popup-box {
	background-color: rgb(57, 56, 64);

	border: 4px solid black;
	border-radius: 15px;

	padding: 30px;

	width: 300px;

	text-align: center;
}
.popup-buttons {
	display: flex;

	justify-content: center;
	
	gap: 70px;
}
.add-attachment-img {
	height: 30px;
	width: 30px;
	background-image: url('/images/add-attachment-icon.png');
	background-size: contain;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.add-attachment-img:hover {
	transform: rotate(90deg);
}
.upload-file-img {
	height: 80px;
	width: 80px;
	background-image: url('/images/upload-icon.png');
	background-size: contain;
	cursor: pointer;
	transition-duration: 0.3s;
}
.upload-file-img:hover {
	background-image: url('/images/upload-icon-hover.png');
}
.upload-img-img {
	height: 80px;
	width: 80px;
	background-image: url('/images/upload-picture-icon.png');
	background-size: contain;
	cursor: pointer;
	transition-duration: 0.3s;
}
.upload-img-img:hover {
	background-image: url('/images/upload-picture-icon-hover.png');
}
.file-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
	justify-items: center;
}
.filebox {
	display: flex;
	align-items: center;
	justify-content: space-between;

	background-color: white;
	border: 4px solid rgb(198, 200, 201);
	border-radius: 10px;
	cursor: pointer;
	transition-duration: 0.15s;

	padding: 5px 10px;
	width: 90%;
	max-width: 200px; /* 👈 keeps them from getting huge */
}
.filebox:hover {
	transform: scale(1.03);
}
.filebox-left {
	display: flex;
	align-items: center;
	gap: 15px;
}
.filebox-left > p {
	margin: 0;
	color: black;
}
.filebox-right {
	display: flex;
	align-items: center;
	gap: 10px;
}
.delete-btn {
	height: 30px;
	width: 30px;
	background-image: url('/images/delete-icon.png');
	background-size: contain;
	cursor: pointer;
	transition-duration: 0.3s;
}
.delete-btn:hover {
	background-image: url('/images/delete-icon-hover.png');
}