/* --- virtualstudio.css --- */

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --background-color: #ffffff;
    --panel-color: #f8f9fa;
    --text-color: #2c3e50;
    --border-color: #dee2e6;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow: hidden; /* Prevent scrollbars on the body */
}

/* --- Header --- */
header { /* ... (same as before, but with vs- classes) ... */ }
.vs-logo { /* ... */ }
.vs-nav { /* ... */ }
.vs-nav-link { /* ... */ }

/* --- Main Content Layout --- */
/* --- virtualstudio.css (Updated Layout) --- */

/* ... (keep all your other styles) ... */
/* --- virtualstudio.css (Corrected Layout) --- */

/* --- virtualstudio.css (Corrected Layout) --- */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents scrollbars on the body itself */
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1; /* This makes main fill all space between header and footer */
    display: flex;
    flex-direction: column;
    min-height: 0; /* Crucial for Firefox/Chrome flex items with content */
}

.vs-content-wrapper {
    display: flex;
    flex-grow: 1; /* This makes the wrapper fill the main element */
    min-height: 0; /* Allows the child to shrink below its content size */
}

.vs-main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#vs-canvas-container {
    width: 100%;
    flex-grow: 1; /* This makes the canvas container fill its parent */
}

.vs-controls-panel {
    width: 320px;
    flex-shrink: 0; /* Prevents the panel from shrinking */
    background-color: var(--panel-color);
    padding: 1.5rem;
    overflow-y: auto; /* This is correct, but now the container will be tall enough */
    /* THIS IS THE KEY ADDITION: */
    align-self: stretch; /* Force the flex item to stretch to fill the container's cross-axis */
}

/* --- Your site-footer styles should be here --- */
.site-footer {
    /* No flex properties needed here, it will naturally sit at the bottom */
    flex-shrink: 0; /* Prevents footer from shrinking */
    background-color: var(--primary-color);
    color: #f1f1f1;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
  /* Navigation Bar */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

.nav-menu li a:hover {
    color: #0078FF;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }
}
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
/* Button links */
.share-buttons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease;
}

/* Facebook */
.share-buttons a.facebook {
  background: #1877f2;
}

/* Instagram */
.share-buttons a.instagram {
  background: #e4405f;
  border: 1px solid #333; /* Adds a dark border for visibility */
}


/* LinkedIn */
.share-buttons a.linkedin {
  background: #0077b5;
}

/* Twitter */
.share-buttons a.twitter {
  background: #1da1f2;
}

/* Reddit */
.share-buttons a.reddit {
  background: #ff4500;
}

/* Hover effect */
.share-buttons a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
/* Add this to your helpmechoose.css */

/* Style for the new Copy Link button */
.share-btn-insta-copy-link-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn-insta-copy-link-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.share-btn-insta-copy-link-btn.copied {
    background-color: var(--success-color);
}

/* Optional: Add a simple icon if you don't have an icon library */
.icon-link::before {
    content: "🔗"; /* Use an emoji as a simple icon */
    font-size: 1em;
}
.lll{
    color:white;
}
.site-footer {
    background: #f2eefb;
    text-align: center;
    padding: 10px 10px 10px;
    margin-top: 40px;
    border-top: 4px solid #ddd;
}

.site-footer h3 {
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 5px;
}

.site-footer .tagline {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.footer-links a:hover {
    color: #6a5acd;
}

.copyright {
    margin: 15px 0;
    font-size: 0.85rem;
    color: #666;
}

.share-buttons a {
    text-decoration: none;
    margin: 0 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: #fff;
    background: #111;
    border-radius: 4px;
    font-weight: bold;
}

.share-buttons {
    margin-top: 20px;
}
/* FILTR Social Buttons */
.share-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.share-buttons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  background: #fff;
  color: #121212;
  transition: all 0.2s ease-in-out;
}

/* Hover Neon Effect */
.share-buttons a:hover {
  background: #6200EA;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 8px rgba(98, 0, 234, 0.6);
}
.instagram-copy {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s, transform 0.2s;
}

.instagram-copy:hover {
    background-color: #6a5acd;
    transform: translateY(-2px);
}

.instagram-copy.copied {
    background-color: #28a745; /* success indicator */
}