@import url('https://googleapis.com');

body {
	font-family: Georgia, serif;
	font-size: 12px;
	margin: 0;
	padding: 6px;
	background-color: #011f02;
}

.page {
	background-color: white;
}

.outer {
    width: 900px;
    height: auto;
    border: 1px solid #000;
    padding: 6px;
    
    /* Background shorthand: color, url, repeat-mode, position */
    background: #615e5c url('img/1.png') repeat top left;
    
    /* Ensures the image doesn't stretch, allowing it to tile naturally */
    background-size: auto; 
    
    margin: auto;
    box-sizing: border-box;
}


.title {
	border: 1px solid #000;
	display: inline-block;
	vertical-align: top;
	width: 300px;
	height: 200px;
	margin-bottom: 6px;
	background-image: url('img/2.png');
	background-size: cover;
}

.site-title {
	font-family: Brush Script MT, cursive;
	font-size: 48px;
    color: #fc4e03;
	text-align: center;
	padding-top: 50px;
	box-sizing: border-box;
}

.site-subtitle {
	text-align: center;
    
}

.banner-wrapper {
	display: inline-block;
	vertical-align: top;
	float: right;
	width: 540px;
	height: 200px;
}

.banner {
	border: 1px solid #000;
	display: inline-block;
	vertical-align: top;
	float: right;
	width: 580px;
	height: 170px;
	background-image: url('img/Icon.jpg');
	background-size: cover;
	background-position: 20%;
}

.scroller {
	border: 1px solid #000;
	display: inline-block;
	vertical-align: top;
	float: right;
	clear: right;
	width: 580px;
	height: 20px;
	background: #fc4e03;
	margin-top: 6px;
	overflow: hidden;
}

.marquee {
	overflow: hidden;
	display: flex;
	line-height: 20px;
}

.marquee span {
	white-space: nowrap;
}

/* 3-Column CSS Grid Container */
.content-row {
	display: grid;
	grid-template-columns: 200px 500px 186px;
	justify-content: space-between;
	width: 100%;
}

.left {
	/* Sizing handled by grid-template-columns */
}

.main {
	border: 1px solid #000;
	height: auto;
	background: #FFF;
	box-sizing: border-box;
}

.right {
	/* Sizing handled by grid-template-columns */
}

/* Navigation Menu Styles */
.menu {
	border: 1px solid #000;
	padding: 24px;
	box-sizing: border-box;
	background-image: url('img/4.png');
	background-color: black;
	width: 200px; /* Locked width to match grid expectations */
}

.menu a {
	border: 1px solid #FFF;
	height: 32px;
	line-height: 30px;
	width: 100%;
	display: inline-block;
	color: inherit;
	text-decoration: none;
	background: #FFF;
	text-align: center;
	position: relative;
	margin-bottom: 12px;
	box-sizing: border-box;
}

.menu a:before {
	content: " ";
	display: inline-block;
	height: 30px;
	width: 30px;
	background: #fc4e03;
	border: 2px solid #FFF;
	position: absolute;
	left: -1px;
	top: -1px;
}

/* Friends Sidebar Styles */
.friends {
	display: inline-block;
	vertical-align: top;
	padding: 24px;
	box-sizing: border-box;
	background: url('img/4.png');
	color: #fc4e03;
	width: 200px;
	margin-top: 12px;
}

.friends a {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	background: #000;
	color: #fc4e03;
	text-decoration: none;
	padding: 3px;
}

.friends a:hover {
	text-decoration: underline;
}

.friends h2 {
	font-size: 12px;
	letter-spacing: 2px;
	margin: 0;
	padding: 0;
	margin-bottom: 12px;
	border-bottom: 2px dotted #fc4e03;
}

/* Content Elements & Components */
.small {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
}

.main iframe {
	height: 100%;
	width: 100%;
	border: 0;
}

.profile {
	border: 1px solid #000;
	width: 186px;
	height: auto;
	background: #FFF;
	padding: 6px;
	box-sizing: border-box;	
	
}
	
.avatar {
    
    background-image: url('img/dapperfox.jpg');
    background-size: cover;
    width: 172px; /* Adjusted to perfectly fill frame with padding limits */
    height: 148px;
    margin-bottom: 12px;
    
}


img {
	max-width: 100%;
    max-height: auto;
}

h1 {
	background: #000;
	color: #fc4e03;
	margin: 0;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 1px;
	margin-top: -6px;
}

h2 {
	font-weight: 500;
	border-top: 1px dashed #000;
	border-bottom: 1px dashed #000;
	font-size: 14px;
	letter-spacing: 2px;
	padding: 3px;
}

.width-50 {
	width: 50%;
}

th, td {
	padding: 6px 12px;
	vertical-align: top;
}

th {
	background: black;
	color: white;
}

.music-player {
    max-width: 320px; /* Reduced width from 400px */
    margin: 10px auto;
    padding: 12px; /* Slimmer padding */
    background: #282828;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    font-family: sans-serif;
    box-sizing: border-box;
}

/* Slimmed down typography and artwork layout */
.now-playing img {
    width: 90px; /* Shrunk down from 150px */
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 4px;
}

.now-playing h2 {
    font-size: 10px; /* Smaller title text */
    margin: 4px 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Prevents long titles from breaking the layout */
}

.now-playing p {
    font-size: 13px; /* Smaller artist text */
    margin: 0;
    color: #b3b3b3;
}

/* Tighter spacing for the progress tracking line */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0; /* Cut margin spacing in half */
}

#progress-bar {
    flex-grow: 1;
    height: 4px; /* Thinner progress bar */
    cursor: pointer;
}

/* Smaller control button group footprint */
.controls button {
    background: #1db954;
    border: none;
    color: #fff;
    padding: 6px; /* Reduced padding */
    font-size: 14px; /* Smaller iconography */
    border-radius: 50%;
    cursor: pointer;
    margin: 0 3px;
    width: 32px; /* Fixed smaller width */
    height: 32px; /* Fixed smaller height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Make the play/pause button pop slightly while staying small */
#play-pause-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
}


/* Force container layout */
.likes {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between the table and the button */
}

/* Force table to behave within the sidebar width */
.likes table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
}
.likes th {
	background: #000;
	color: #FFF;
	margin: auto;
	margin-top: 22px;
}
/* Keep the image button perfectly safe and responsive */
.kofi-button-link {
    display: inline-block;
    max-width: 100%;
}

.kofi-button-img {
    height: 36px;
    max-width: 100%;
    object-fit: contain;
    border: 0;
}

