/*
 * Media processing
 *
 * Media Applications/Widgets Styles
 *
 * Pavlin Georgiev
 * 2023 Softel Labs
 *
*/


.app-container {
  height: 100%;
  overflow-y: scroll;
  padding: 1px;
  box-sizing: border-box;
}

.app-select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: lightblue;
  font-size: 16px;
}

.app-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  background-color: gray;
}
.app-widget textarea {
  width: 90%;
  padding: 8px;
  font-size: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.app-widget label {
  /* background-color: #3498db; */
  color: whitesmoke;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.app-widget button {
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.app-widget button:hover {
  background-color: #2980b9;
}

.app-start-button {
  width: 100%;
}