/* Rose Pine List/Modern Minimal Theme */
:root {
    /* Rose Pine Colors (Dark Mode) */
    --color-base: #191724;        /* Background */
    --color-surface: #1f1d2e;     /* Container/Button Background */
    --color-text: #e0def4;        /* Foreground Text */
    --color-muted: #908caa;       /* Muted/Description Text */
    --color-highlight: #9ccfd8;   /* Hover/Accent */
    --color-border: #3e3d4e;      /* Subtle Border */
    --color-primary: #ebbcba;     /* H1/Prompt */
}
body.light-mode {
    --color-base: #faf4ed;        /* Light Background */
    --color-surface: #fffaf3;     /* Light Container/Button Background */
    --color-text: #575279;        /* Dark Foreground Text */
    --color-muted: #797693;       /* Muted/Description Text */
    --color-highlight: #797693;   /* Accent/Hover */
    --color-border: #e4e2ec;      /* Light Border */
    --color-primary: #b4637a;     /* H1/Prompt */
}

body {
    /* Base Color: Dark, soft purple-blue background */
	font-family: 'monospace', 'Courier New', Courier, monospace;
    background-color: var(--color-base); 
    color: var(--color-text);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
}

.container {
    /* Removed boxy terminal look: no box-shadow, no background, minimal padding */
    width: 95%;
    max-width: 600px; /* Narrower for a link list feel */
    padding: 0; /* Minimal padding */
    text-align: left;
    background-color: transparent; /* Makes the list appear against the body background */
    border: none;
    box-shadow: none;
    margin-top: 5vh;
}

/* Profile Image Styling - Minimalist */
.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Back to rounded for a modern profile look */
    object-fit: cover;
    border: 1px solid var(--color-border); /* Subtle outline */
    margin-bottom: 20px;
    display: block;
    margin-left: 0; /* Ensure image is left-aligned */
}

header {
    /* Ensure header content is left-aligned */
    text-align: left;
    margin-bottom: 30px;
}

h1 {
    /* Primary Color for the prompt text */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 5px; /* Less space below username */
    color: var(--color-primary); /* Primary */
    white-space: pre;
}

p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--color-muted); /* Muted color for descriptive text */
}

.links {
    /* Layout for the links section */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Standard spacing for list items */
    margin-top: 20px;
}

/* Link Button Styling - Clean, full-width list items */
/* Change the main styling for the link-button to also apply to the button element */
.link-button, .drop-toggle {
    text-decoration: none;
    background-color: var(--color-surface);
    color: var(--color-text);
    padding: 12px 20px; /* Padding for the list item/button */
    border-radius: 4px; /* Slight rounding for modern feel */
    font-size: 1.1em;
    font-weight: normal;
    border: 1px solid var(--color-border); /* Subtle border to define the box */
    text-align: left;
    display: block; /* Make the link/button fill the container width */
    width: 100%; /* Important for button to fill width */
    cursor: pointer; /* Indicate it's clickable */
}

.link-button:hover, .drop-toggle:hover {
    /* Highlight color for a clean hover effect */
    color: var(--color-highlight); /* Highlight */
    background-color: var(--color-text); /* Slightly darker surface on hover */
    border-color: var(--color-border); /* Highlight the border on hover */
}

/* Sub-menu Styles */
.submenu {
    display: none;
    padding-left: 20px; /* Indent the sub-links */
    margin-top: 10px;
}
.submenu a {
    padding: 8px 0;
    display: block;
    font-size: 1em;
    color: var(--color-muted); /* Muted color for sub-links */
    text-decoration: none;
    border: none;
    background-color: transparent;
}

.submenu a::before {
    content: "▶ ";
    font-size: 0.9em;
}

.submenu a:hover {
    color: var(--color-highlight);
}

.icon {
	width: 1.1em;
	padding-right: 1em;
}
.mode-switch-button {
    background: var(--color-surface);
    color: var(--color-text);
	position: absolute;
    border: none;
    font-size: 0.9em;
    cursor: pointer;
	left: calc(100% - 2.2em);
}

.mode-switch-button:hover {
	border-radius: 100%;
    background: var(--color-highlight);
    color: var(--color-base);
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
