/*Store Dshboard */

.container.dashboard{
    width: 100%;
    border: 2px solid grey;
    background: white;
}

.store-name {
    font-size: 2rem;
    color: #4e944f;
  }
  
.store-description {
    font-size: 1rem;
    color: #777;
    margin: 0.5rem 0;
}

.store-meta{
    display: flex;
    justify-content: center;
    font-size: 0.9rem;
    color: #777;
    margin: 0.5rem 0;
}

.store-meta div{
    text-align: left;
}
  
.store-image{
    width: 98%;
    margin: auto;
}

.store-image img{
    width: 100%;
    border-radius: 4px;
}
  
.store-info{
    color: white;
    text-align: center;
}

.store-detail .store-actions{
    display: flex;
    justify-content: space-evenly;
}

.store-actions .btn{
    margin: 4px;
    background-color: #5cb85c;
    padding: 8px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn.btn-edit{
    background-color: #ffc861;
}

@media (min-width: 768px){
    .store-image{
        width: 50%;
    }
}

/* Personal Dashboard */

.personal-dashboard{
    display: flex;
    justify-content: center;
    text-align: center;
}

.display-photo{
    width: 222px;
    height: 222px;
}

.chat-icon{
    max-width: 35px;
}