Main container
.airb-resume-builder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header */
.airb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* Resume list */
.airb-resume-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airb-resume-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #2271b1;
}

.airb-resume-actions {
    display: flex;
    gap: 10px;
}

/* Steps navigation */
.airb-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.airb-step {
    padding: 10px 15px;
    color: #72777c;
    cursor: pointer;
    position: relative;
    text-align: center;
    flex: 1;
}

.airb-step.active {
    color: #2271b1;
    font-weight: 600;
}

.airb-step.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #2271b1;
}

/* Step panels */
.airb-step-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.airb-step-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form styles */
.airb-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.airb-title-row input{
    padding: 8px
}
.airb-title-row label{
    font-size: 20px;
    font-weight:500;

}
.airb-form-col {
    flex: 1;
}
.airb-export-options p{
    font-size: 20px;
    font-weight:500;
    margin: 7px 0;
}

.airb-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1d2327;
}

.airb-form-row input[type="text"],
.airb-form-row input[type="email"],
.airb-form-row input[type="tel"],
.airb-form-row input[type="number"],
.airb-form-row input[type="month"],
.airb-form-row textarea,
.airb-form-row select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.07);
}

.airb-form-row textarea {
    min-height: 100px;
}

/* Template selection */
.airb-templates {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.airb-template-pre{
    background-color: #fff   ;
    box-shadow: 0px 0px 4px 2px #cdcdcd;
}
.airb-template {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.airb-template:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.airb-template img {
    width: 100%;
    height: auto;
    display: block;
}

.airb-template h4 {
    margin: 0;
    padding: 15px;
    background: #f9f9f9;
    text-align: center;
}

.airb-template .airb-select-template {
    display: block;
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid #ddd;
}

.airb-remove-experience,
.airb-remove-education {
    margin-top: 10px;
    background: #dc3232;
    color: white;
    border: none;
    padding: 13px 7px;
    line-height: .5;
}
.airb-add-education,
.airb-add-experience {
    position: absolute !important;
    margin: -38px 94px !important;
    padding: 13px 7px;
    line-height: .5;
}
.airb-remove-experience:hover,
.airb-remove-education:hover {
    background: #a00;
    color: white;
}

/* Step navigation */
.airb-step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Finalize step */
.airb-finalize-container {
    display: flex;
    gap: 10px;
}
.airb-select-template.selected{
background-color: #939393;
}
.airb-finalize-actions button,button.button {
    margin-bottom: 5px !important;
}
.airb-resume-preview {
    flex: 2;
    border: 1px solid #ddd;
    padding: 20px;
    background: #f4f4f4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
}

.airb-finalize-actions {
    flex: .5;
}

.airb-export-options {
    margin:0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Login prompt */
.airb-login-prompt {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.airb-login-prompt h3 {
    margin-top: 0;
    color: #1d2327;
}

/* AI Generate button */
.airb-ai-generate {
    margin-top: 10px;
    background: #1b7045;
    color: white;
    border: none;
        padding: 10px 15px;
            float: inline-end;
}

.airb-ai-generate:hover {
    background: #2c3338;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .airb-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .airb-finalize-container {
        flex-direction: column;
    }
    
    .airb-templates {
        grid-template-columns: 1fr;
    }
}


   .airb-template-pre{
    width: 21cm;
    height: 29.7cm;
    max-width: 900px;
    overflow-y: scroll;
    }

.airb-loading .airb-loader {
  width: 70px;
  height: 70px;
  border: 5px solid #046bd2;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  animation: pulse 1s linear infinite;
  display: none;
    margin: auto;
}
.airb-loading .airb-loader:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border: 5px solid #046bd2;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scaleUp 1s linear infinite;
}
.airb-loading .airb-loader.show {
  display: block;
}   

.airb-loading .spinner{
    text-align: center;
    margin: 47px 0;
}
@keyframes scaleUp {
  0% { transform: translate(-50%, -50%) scale(0) }
  60% , 100% { transform: translate(-50%, -50%)  scale(1)}
}
@keyframes pulse {
  0% , 60% , 100%{ transform:  scale(1) }
  80% { transform:  scale(1.2)}
}