/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Set the body to use the full viewport height */
  body,
  html {
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* Center the container both vertically and horizontally */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
  }
  
  /* Style for the main heading */
  h2 {
    font-size: 2.5rem;
    color: #25d366; /* WhatsApp green */
    margin-bottom: 0.5rem;
  }
  
  /* Style for the subheading */
  h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  /* Style for the paragraph */
  p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  /* Style for the button */
  .create-campaign-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    color: #fff;
    background-color: #25d366; /* WhatsApp green */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  /* Hover effect for the button */
  .create-campaign-btn:hover {
    background-color: #128c7e; /* Darker WhatsApp green */
  }
  

.launch-campaign-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.step-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.import-contacts p {
  font-size: 14px;
  color: #777;
}

.import-options {
  display: flex;
  gap: 15px;
}

.import-box {
  flex: 1;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  height: 120px;
}

.icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.warning {
  color: red;
  font-size: 14px;
}

.button-group {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn.draft {
  background: #ccc;
}

.btn.next {
  background: #007bff;
  color: white;
}

.btn.next:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.steps .step {
  margin-top: 10px;
  color: #777;
}

.square-btn {
  border-radius: 8px;
  padding: 20px 20px;
  min-width: 70px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  background-color: #00D464; /* primary color */
  color: white;
  border: none;
  cursor: pointer;
  margin-right: 5px;
}

.square-btn:hover {
  background-color: #3f4254; /* darker shade on hover */
}

.library-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box-content {
  /* padding: 15px; */
  /* background: #f5f5f5; */
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 450px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.box-content:hover {
  /* background: #e6f7ff; */
  /* cursor: pointer; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}
.box-content .list-content li:hover{
  color: #333;
  cursor: pointer;
  background: #d6ffe5;
}
.typeliabrary{
  padding: 20px 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  
}

.typeliabrary li{
  font-size: 16px;
  display: inline-block;
  width: 280px;
  list-style: none;
  margin-bottom: 15px;
}

.list-content li {
  list-style: none;
  padding: 8px 15px;
  font-size: 14px;
  color: #555;
}

h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.or-best-campaign {
  text-align: center;
  background-color: #e6f7ff;
  border-radius: 5px;
  font-weight: bold;
}

.btn-primary {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #005bb5;
}

textarea.form-control {
  resize: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
}

.library-container {
  padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ccc;
    width: 500px;
    /* margin: 30px auto; */
    margin: 20px;
}
.headersec{display: flex; align-items: center; justify-content: space-between;}
.create-bucket-btn .btn.dpddaysbtn{font-size: 12px;}

.create-bucket-btn {
  text-align: center;
}

.create-bucket-btn .btn-primary {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 25px;
  background-color: #0066cc;
  color: white;
  transition: background-color 0.3s;
}

.create-bucket-btn .btn-primary:hover {
  background-color: #005bb5;
}

.or-divider {
  margin-top: 30px;
}

.or-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.checkbox-list {
  margin-top: 20px;
}

.checkbox-list .form-check {
  margin-bottom: 2px;
}

.checkbox-list .form-check-input {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}

.checkbox-list .form-check-checkboxinput  {
  margin-right: 15px;
  width: 15px;
  height: 20px;
  margin-left: 2px;
}

.checkbox-list .form-check-textlabel {
  font-size: 14px;
  color: #555;
  margin-left: 15px; 
  text-align: middle;
}

.checkbox-list .form-check-label {
  font-size: 16px;
  color: #555;
  margin-left: 15px; 
  text-align: left;
}

.checkbox-list .form-check:hover .form-check-label {
  color: #0066cc;
}

.save-btn-container {
  text-align: center;
  margin-top: 30px;
}

.save-btn-container .btn-primary {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  background-color: #0066cc;
  color: white;
  transition: background-color 0.3s;
}

.save-btn-container .btn-primary:hover {
  background-color: #005bb5;
}

/* Container for the entire Intencity page */
.library-intensity-container {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header styling */
.section-header {
  text-align: left;
  font-size: 24px;
  color: #333;
  margin-top: 20px;
}

/* Flexbox layout for sections (horizontal layout) */
.sections-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

/* Box container for section 1 and section 2 */
.box-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 1; /* Makes both boxes take equal space */
}

/* Section title styling */
.section-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

/* Style for interval options */
.interval-options {
  margin-top: 10px;
}

.interval-options .form-check {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.interval-options .form-check-input {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}

.interval-options .form-check-label {
  font-size: 16px;
  color: #555;
  margin-left: 15px;
}

/* Style for the days options */
.days-options {
  margin-top: 10px;
}

.days-options .form-check {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.days-options .form-check-input {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}

.days-options .form-check-label {
  font-size: 16px;
  color: #555;
  margin-left: 15px;
}

/* Save button container */
.save-btn-container {
  text-align: center;
  margin-top: 30px;
}

.save-btn-container .btn-primary {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0066cc;
  color: white;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.save-btn-container .btn-primary:hover {
  background-color: #005bb5;
}

.days-options .form-check:hover .form-check-label {
  color: #0066cc;
}


.interval-options .form-check:hover .form-check-label {
  color: #0066cc;
}

/* Page container */
.library-time-container {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header styling */
.section-header {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* Box styling */
.box-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Section title */
.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Regulated Time - Time Picker */
.regulated-time {
  display: flex;
  align-items: center;
  gap: 15px;
}

.regulated-time label {
  font-size: 16px;
  color: #555;
}

.time-input {
  width: 120px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* Time Period Checkboxes */
.time-period-options .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.time-period-options .form-check-input {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.time-period-options .form-check-label {
  font-size: 16px;
  color: #555;
  margin-left: 10px;
}

/* Save Button */
.save-btn-container {
  text-align: center;
  margin-top: 20px;
}

.save-btn-container .btn-primary {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0066cc;
  color: white;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.save-btn-container .btn-primary:hover {
  background-color: #005bb5;
}


.time-period-options .form-check:hover .form-check-label {
  color: #0066cc;
}

.livefosheading {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  margin-right: 20px;
}