        

       .oib-container {
   
    border: 2px solid #bfdbfe;
    box-shadow: 0 0px 7px rgba(27, 127, 204, .2);
    overflow: hidden;
		   border-radius: 20px;
		   padding: 40px;
		   margin: 40px;
}

        .oib-header {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }

        .oib-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .oib-sub-title {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .oib-description {
            font-size: 1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .oib-progress {
            height: 4px;
            background: rgba(255,255,255,0.2);
            position: relative;
        }

        .oib-progress-bar {
            height: 100%;
            background: #fff;
            transition: width 0.3s ease;
            width: 25%;
        }

        .oib-tabs {
            background: #f4f4f5;
            padding:10px;
			border-radius:5px;
        }

        .oib-tab-buttons {
            display: flex;
            overflow-x: auto;
        }



        .oib-tab-btn {
            flex: 1;
            background: none;
            border: none;
           
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #6c757d;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
			border-radius: 0px;
    padding: 8px;
    color: #000;
    background: #f4f4f5;
    border: none;
        }

.oib-tab-btn:hover{ background:none;color:#000;}

.oib-tab-btn.active{border-radius: 0px;
    padding: 8px;
    color: #000;
    background: #fff;
    border: none;}



/*         .oib-tab-btn.active {
            color: #4a90e2;
            border-bottom-color: #4a90e2;
            background: white;
        } */

        .oib-tab-btn.completed {
            color: #000;
        }
/* 
        .oib-tab-btn.completed::after {
            content: "✓";
            position: absolute;
            top: 5px;
            right: 10px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        .oib-tab-icon {
            font-size: 1.5rem;
        }

        .oib-content {
            padding: 40px 0px;
            min-height: 600px;
        }

        .oib-tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .oib-tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .oib-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

/*         .oib-form-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #e9ecef;
        } */

        .oib-form-group {
            margin-bottom: 25px;
        }

        .oib-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .oib-label {
            display: block;
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .oib-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e4e4e7 !important;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: white;
			border-radius: 5px !important;
        }

        .oib-input:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        .oib-slider-container {
            margin-top: 10px;
        }

        .oib-slider {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: #000;
            outline: none;
            -webkit-appearance: none;
        }

        .oib-slider::-webkit-slider-thumb {
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #4a90e2;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

        .oib-slider-display {
            text-align: center;
            margin-top: 10px;
            font-weight: 600;
            color: #000;
            font-size: 1.1rem;
        }

        .oib-duration-display {
            background: #eff6ff;
            border-radius: 8px;
            padding: 12px 16px;
            text-align: center;
        }

        .oib-duration-number {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a90e2;
        }

      

        .oib-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }

        .oib-section-desc {
            color: #6c757d;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .oib-templates {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .oib-template-card {
            border: 1px solid #e4e4e7;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .oib-template-card:hover {
            border-color: #4a90e2;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
			background:#eff6ff;
        }

        .oib-template-card.selected {
            border-color: #4a90e2;
            background: #f0f7ff;
        }

.oib-template-title{ font-size:18px !important;}
.oib-template-desc{ font-size:18px !important;}


        .oib-template-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
        }

        .oib-template-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px !important;
        }

        .oib-template-desc {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.4;
			margin-bottom: 10px !important;
        }

        .oib-template-duration {
               background: #000000;
    color: white;
    padding: 6px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
        }





        .oib-template-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .oib-tag {
            background: #e9ecef;
            color: #495057;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .oib-tag-more {
            background: #4a90e2;
            color: white;
        }

        .oib-continue-section {
            text-align: center;
         
        }

.oib-duration-number{font-size: 30px;
    font-weight: bold;
    color: #2563eb;}

        .oib-continue-btn {
            background:#2563eb;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .oib-continue-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
        }

        .oib-arrow {
            font-size: 1.2rem;
        }

        .oib-attractions-content, .oib-organize-content, .oib-finalize-content {
            text-align: center;
        }

        .oib-attractions-content h3, .oib-organize-content h3, .oib-finalize-content h3 {
            font-size: 18px;
            color: #212529;
            margin-bottom: 10px;
        }

        .oib-attractions-content p, .oib-organize-content p, .oib-finalize-content p {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 0px;
        }

        .oib-attractions-grid {
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 30px;
            text-align: left;
        }

        .oib-filter-panel {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
        }

        .oib-filter-group {
            margin-bottom: 20px;
        }

        .oib-filter-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
            display: block;
            font-size: 0.9rem;
        }

        .oib-select {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            
            font-size: 0.9rem;
        }

        .oib-attractions-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .oib-attraction-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .oib-attraction-card:hover {
            border-color: #4a90e2;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .oib-attraction-card.selected {
            border-color: #4a90e2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
        }

        .oib-attraction-image {
            width: 100%;
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .oib-must-see-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffc107;
            color: #000;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .oib-attraction-info {
            padding: 20px;
        }

        .oib-attraction-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 8px;
        }

        .oib-attraction-location {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .oib-attraction-desc {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .oib-attraction-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .oib-attraction-duration {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #4a90e2;
            font-size: 0.9rem;
        }

        .oib-attraction-price {
            font-weight: 600;
            color: #28a745;
        }

        .oib-day-planner {
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 30px;
            text-align: left;
        }

        .oib-day-sidebar {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
        }

        .oib-day-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .oib-day-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 25px;
        }

        .oib-day-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .oib-day-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
        }

        .oib-day-meta {
            display: flex;
            gap: 15px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .oib-day-attractions {
            min-height: 100px;
            border: 2px dashed #e9ecef;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            color: #6c757d;
        }

        .oib-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e9ecef;
        }

        .oib-btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .oib-btn-primary {
            background: #1e40af;
            color: white;
        }

        .oib-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
        }

        .oib-btn-secondary {
            background: #6c757d;
            color: white;
        }

        .oib-btn-secondary:hover {
            background: #5a6268;
        }

        .oib-summary-card {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .oib-summary-title {
            font-weight: 600;
            color: #1976d2;
            margin-bottom: 15px;
        }

        .oib-summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .oib-summary-value {
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .oib-container {
                margin: 10px;
                border-radius: 15px;
				        padding: 10px;
            }

            .oib-content {
                padding: 20px;
            }

            .oib-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .oib-attractions-grid, .oib-day-planner {
                grid-template-columns: 1fr;
            }

            .oib-attractions-list {
                grid-template-columns: 1fr;
            }

            .oib-form-row {
                grid-template-columns: 1fr;
            }

            .oib-tab-btn {
                font-size: 0.8rem;
                padding:8px !important;
            }
        }


@media (max-width: 579px) {
	.oib-summary-card{ margin-bottom:0px;}
	.oib-day-sidebar{ padding:10px;}
	.oib-template-duration{ width:131px!important;}
	.oib-btn {
		padding: 12px !important;}
	.ast-blog-layout-5-grid .post-content{padding-left: 0px !important;}
	.e-con {
    padding: 15px !important;
}
	.oib-template-desc {
    font-size: 14px !important;
}
	.oib-tab-btn{width: 100%;}
	.oib-tab-buttons{display: block; width: 100%;
    text-align: center;}
	
}

