/* ===============================
   Global Variables & Reset
================================= */
:root {
  --font-main: "Inter", sans-serif;
  --theme-primary: #1a73e8;
  --theme-text: #ffffff;
  --theme-subtle: #e8f0fe;
  --bg-main: #f4f7f9;
  --bg-panel: #ffffff;
  --bg-form: #f8f9fa;
  --text-main: #2d3748;
  --text-light: #5f6368;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
               0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--bg-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

/* ===============================
   Header Styling
================================= */
.site-header {
  background: var(--bg-panel);
  color: var(--text-main);
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container .site-logo {
  height: 40px;
  display: block;
}

/* Login button */
.btn-login {
  color: white;
  background: #8c9fb5;
}
.btn-login:hover {
  opacity: 0.85;
}

/* Sign Up button */
.btn-signup {
  color: #8c9fb5;
  margin-left: 5px;
  border: 1px solid #8c9fb5;
  background: transparent;
}
.btn-signup:hover {
  background: #8c9fb5;
  color: white;
}

.nav-item:hover {
  background: #f7fafc;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-login {
  background: #8c9fb5;
  color: white;
}

.btn-login:hover {
  opacity: 0.85;
}

.btn-signup {
  color: #8c9fb5;
  border: 1px solid #8c9fb5;
  background: transparent;
}

.btn-signup:hover {
  background: #8c9fb5;
  color: white;
}

/* ===============================
   Responsive Design
================================= */
@media (max-width: 768px) {

 
}
/* Resume Builder Header */
.resume-header {
  background: var(--bg-panel, #fff);
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  padding: 8px 2px;
}

.resume-title {
  font-size: 1rem;
  color: #2d3748;
}

.header-buttons .btn {
  min-width: 110px;
}

/* Toolbar container */
 .toolbar {
                background: var(--bg-panel);
                padding: 12px;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 24px;
                flex-wrap: wrap;
                border-bottom: 1px solid var(--border-color);
            }
            .toolbar-section {
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .toolbar-label {
                font-size: 13px;
                color: var(--text-light);
                font-weight: 500;
            }
            .toolbar-select {
                padding: 6px 10px;
                font-size: 13px;
                background: var(--bg-panel);
                border: 1px solid var(--border-color);
                border-radius: 6px;
            }
/* Color palette */
 .color-palette {
                display: flex;
                gap: 8px;
            }
            .color-cell {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                cursor: pointer;
                transition: transform 0.2s;
                border: 2px solid var(--bg-panel);
                box-shadow: var(--shadow-sm);
            }
            .color-cell.active {
                border-color: var(--theme-primary);
                transform: scale(1.15);
            }
/* Toolbar selects */
.toolbar-select {
    min-width: 120px;
}
.position-0{
        position: absolute !important;
   right:0 !important; 
}
/* Photo Upload */
.photo-upload {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed #adb5bd;
    border-radius: 8px;
    cursor: pointer;
    border-radius:50%;
}
.photo-upload svg {
    width: 32px;
    height: 32px;
    color: #adb5bd;
}
.photo-position-controls button {
    margin-right: 0.25rem;
}
.photo-position-controls button.active {
    background-color: #0d6efd;
    color: white;
}

/* Form Group */
.form-group {
    margin-bottom: 1rem;
}

/* Add buttons */
.add-btn {
    margin-top: 0.5rem;
}

/* Resume wrapper */
.resume-wrapper {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: transparent;
    position: relative; 
}

/* Responsive panels */
.left-panel {
    max-width: 100%;
}
.center-panel {
    margin-top: 1rem;
}

 