body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* Home / Brand link */
.site-home {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand-skill {
    color: #ffffff;
    /* white */
}

.brand-stack {
    color: #e67e22;
    /* existing orange */
}


.form-panel
{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

    flex: 2;
    max-width:900px;
    margin:0 auto;
}

.form-section {
    display:flex;
    flex-direction: column;
    margin-top: 20px;
    padding: 0 25px;
    
    
}


/* Nested rows: don't repeat the full-width label */
.fl-row .fl-row:not(:first-child) label {
    padding-left: 40px;
}

/* When two selects appear side by side, give them spacing */
.fl-row select+select {
    margin-left: 20px;
}

.empty-state {
    background: #fff4e6;
    /* soft orange hint */
    border: 1px dashed #e67e22;
    
    padding: 12px 16px;
    
    font-size: 14px;
    color: #a84300;
}

.empty-state i {
    margin-right: 6px;
    color: #e67e22;
}



.list > .item.border:hover{
    border: 1px solid #e67e22;
}



/* Base Entry Style */
.entry {
    
    background-color:var(--color-dark);
    border-radius: 6px;
    padding:4px;
    width:100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative; /* Needed for absolute positioning of actions */
}


/* Header line (Job Title, Degree, etc.) */
.entry-header {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

/* Secondary text (Institution, Company, etc.) */
.entry-sub {
    font-style: italic;
    color: var(--color-secondary);
    margin-left: 5px;
}

/* Dates & Meta Info */
.entry-dates {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Details (description, field of study, etc.) */
.entry-details p {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #444;
}

.entry-details ul {
    margin-left: 18px;
    list-style-type: disc;
}

.entry-details li {
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #333;
}

/* Action buttons - hidden by default */
.entry-actions {
    position: absolute;
    background-color:#fff;
    border:1px solid #e67e22;
    border-radius:4px;
    top: 8px;
    right: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
/* Show buttons when hovering over entry */
.entry:hover .entry-actions {
    opacity: 1;
}

/* Style the buttons */
.entry-actions button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #e67e22;
    transition: color 0.2s ease;
}

.entry-actions button:hover {
    color: #d35400;
}

.entry-input {
    display:flex;
    flex-direction: column;
    border:1px solid transparent;
    /* light grey border */
    border-radius: 4px;
    /* slight rounding */
    padding: 10px 12px;
    /* spacing inside */
    
    gap:10px;
    /* white background */
}

.entry-input:focus-within {
    border:1px solid #3498db;
    /* highlight border when a child input is focused */
    box-shadow: 0 0 3px rgba(52, 152, 219, 0.3);
}
