
@import '../mixins';

.zoom-settings-container, .jitsi-settings-container, .webex-settings-container, .google-meet-settings-container {

    margin: 0 auto;
    padding: 20px 20px 20px 0;
  
    a.back-button {
      display: block;
      margin-bottom: 20px;
      color: #2D8CFF;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      &:focus{
        box-shadow: none;
        outline:none;
      }
      &:hover{
        color: #0E00DC;
      }
    }
  
    .main-wrapper {
      display: flex;
      flex-direction: column;
  
      .header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
  
        .title {
          font-size: 1.5em;
          margin-left: 10px;
        }
      }
  
      .tab-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: .5px solid #c1bdbd9e;
        flex-wrap: wrap;
  
        .tab {
          display: flex;
          flex-wrap: wrap;
  
          .tab-item {
            padding: 10px 30px;
            margin-right: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            font-weight: bold;
            color: #333;
            border: 1px solid #ddd;
            font-size: 16px;
            border-radius: 8px;
            transition: background-color 0.3s;
            background: #b7b7b782;
             width: 111px;
            text-align: center;
  
            &:hover {
              background-color: #f5f5f5;
            }
  
            &.active {
              background-color: #2D8CFF;
              color: #fff;
            }
          }
        }
  
        .create-meeting-btn {
          margin-left: auto;  // Align to the right
          background-color: #2D8CFF;
          color: #fff;
          padding: 10px 20px;
          border: none;
          border-radius: 8px;
          cursor: pointer;
          font-size: 1em;
          display: flex;
          align-items: center;
          text-decoration: none;
  
          .dashicons {
            margin-right: 5px;
          }
  
          &:hover {
            background-color: #0E00DC;
          }
        }

        @include respond-to('large') {
          .create-meeting-btn{
           display: none;
          }
        }

        @include respond-to('four_hundread') {
          .tab{
            justify-content: center;
            .tab-item{
              width: 150px;
            }
          }
        }
      }
  
      .save-button {
        padding: 10px 15px;
        background-color: #2D8CFF;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 16px;
        width: 140px;
  
        &:hover {
          background-color: #0E00DC;
        }
      }
      
      @import 'jitsi-settings-api.scss';
    }
}

.google-meet-settings-container {
    .file-upload-label {
      display: inline-block;
      cursor: pointer;
    }
    
    .button-style {
      display: inline-block;
      padding: 8px 16px;
      background-color: #0073e6;
      color: #fff;
      border-radius: 4px;
      text-align: center;
    }
    
    .file-info {
      margin-top: 8px;
      font-size: 14px;
      color: #333;
    }
}
  
@include respond-to('four_hundread') {
  .zoom-settings-container, .jitsi-settings-container, .webex-settings-container {
    .react-tooltip{
      width: 280px !important;
    }
  }
}
  