body {
    background-color: #F5F5F5;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.container {
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}

#appContainer {
    padding: 2em;
}

.minWidth {
    min-width: 800px;
}

.pageItem {
    border: 1px solid #cecece;
    border-radius: 5px;
    background-color: white;
    width: 150px;
    height: 100px;
    margin: 1em;
    padding: 0.5em;
    display: inline-block;
    text-align: center;
    font-size: 0.75em;
    font-weight: 100;
}

.frequentPagesContainer {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: space-around;
    flex-wrap: wrap;
    border: 1px solid #cecece;
    max-width: 1000px;
    border-radius: 5px;
    padding: 2em;
    margin: 1em;
    background-color: #f5f5f5;
}

.loginItemsContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.addBtnContainer button {
    outline: none !important;
}

#addUrlDialog {
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    border: 1px solid rgb(148, 148, 148);
    border-radius: 5px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.addBtnContainer {
    display: flex;
    align-items: flex-end;
}
.textContainerStyle {
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}

.formContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titleClass {
    border-bottom: 1px solid rgb(148, 148, 148);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#saveBtn{
    margin-left: 90px;
}

#addBtn {
    margin-bottom: 50px;
}

.hide {
    display:none;
}

.show {
    display: block;
}

.card {
    background:#FFF;
    border:1px solid #AAA;
    padding:0px;
    margin:15px;
    width: 300px;
    display: flex;
    border-radius: 5px;
}

.card2 {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 15px 0px #ccc;
    width: 300px;
    height: 75px;
    float: left;
    margin-right: 55px;
    margin-bottom: 25px;
}

.card2 p {
    text-align: center;
}

.cardImg {
    padding: 10px;
}

.si-glyph * {
    fill: blue;
}

/* New styles */
.attributesContainer {
    display: flex;
    align-items: center;
}

.attributeRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.attributeRowItem {
    display: inline !important;
    width: 15em !important;
}

.attributeRowImg {
    width: 32px;
    height: 32px;
}

.leftSpacer {
    margin-left: 0.5em;
}

.easyLoginItemsContainer {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    border: 1px solid #cecece;
    border-radius: 5px;
    padding: 2em;
    margin: 1em;
    background-color: #f5f5f5;
}

.itemText {
    width: 100%;
    height: 100%;
    text-align: center;
    word-wrap: break-word;
    cursor: pointer;
}

.imgHoverOptions {
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
    border-radius: 5px;
    width: 100%;
}

.imgHoverOptions img {
    width: 20px;
    height: 20px;
}

.pageItem:hover .imgHoverOptions {
    visibility: visible;
    animation: fadein 0.75s;
}

@-webkit-keyframes fadein {
     from { opacity: 0; }
     to   { opacity: 1; }
}

.displayFlex {
    display: flex;
}

.flexColumnDirection {
    flex-direction: column;
}

.pageTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titleBorder {
    border-bottom: 1px solid #cecece;
    padding-bottom: 0.25em;
}

.loginItemsWidthEnforcer {
    width: 700px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}